Automatically creates controllers, DAOs, DTOs, converters, services and repositories
Install SpringFast globally on your system:
npm i -g springfast
-
Navigate to the folder where you want your project to be generated (a folder with the project name will be automatically created)
-
Execute
springfast
- Follow the onscreen instructions
SpringFast can configure your application.yml with the server port and database connection parameters. It can also generate DAOs, DTOs, controllers, services and repositories.
-
Navigate to the project folder
-
Execute
springfast
- SpringFast will automatically recognize that it's a Spring project and you will have to follow the onscreen instructions
Build and run on Windows: npm run build; npm i -g .; springfast
Build and run on Linux: npm run build && npm i -g . && springfast