Java CLI tool to scaffold a project with full CRUD from a database schema. It is based on a template, so you can customize and extend it with any language you want.
🎉 It works now with my web framework and unidao
overview.mp4
- Postgres, Mysql database syntax
- My framework 👉 See here
- Spring Rest
- Angular standalone app
- ... template and class YOU can override
- Download the zip file from the release and extract
- Change the
config.json
file to match your database configuration
...
"databases": {
"default": {
"provider": "postgresql",
"host": "localhost",
"port": "5432",
"database": "test",
"user": "mendrika261",
"password": ""
}
},
...
- (Optional) Change files in the
templates
folder to match your needs - Run the jar file with the following command and follow the instructions
java -jar scaffolding.jar
- Clone the repository
- Run the following command
mvn clean package
- The jar file will be in the
target
folder - Follow the instructions in the
How to use 2
section