KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
codegen
★ 8
Open GitHub ↗
blade code builder
Download README (.md)
Explore Similar Repositories
2D-Colliders-Expanded
:
Unity 2D Collision asset
PI-AF-SDK-Clues
:
PI AF SDK Command Line Utility and Examples
streamagame
:
Core repository for the Stream-A-Game mobile cloud gaming project
VoxRes
:
SuperCollider UGen to analyze vocal sounds
locationtest
:
Example how to use `tns-geolocation` and `tns-googleMaps`
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
codegen
?
Download (.md)
# codegen This project is based on the blade framework code generator, according to the database to generate Java classes, generating code Model and the Service. ## Usage ```java public static void main(String[] args) throws IOException { DBMeta dbMeta = new DBMeta() .setDriver("com.mysql.jdbc.Driver") .setUrl("jdbc:mysql://127.0.0.1:3306/demo1") .setDbname("demo1") .setUser("root") .setPass("123456") .setTableName("%") .setPrefix("t_"); ProjectMeta projectMeta = new ProjectMeta() .setName("demo1") .setPkgName("com.demo1") .setHump(true) .setOutPath("/Users/biezhi/workspace/temp") .setDbMeta(dbMeta); new CodeGenerator(projectMeta).generator(); } ```