springfast

Automatically creates controllers, DAOs, DTOs, converters, services and repositories

Usage no npm install needed!

<script type="module">
  import springfast from 'https://cdn.skypack.dev/springfast';
</script>

README

Quality Gate Status Maintainability Rating Reliability Rating Security Rating Bugs Vulnerabilities Pipeline

SpringFast

Automatically creates controllers, DAOs, DTOs, converters, services and repositories

Install

Install SpringFast globally on your system:

npm i -g springfast

Project initialization

  1. Navigate to the folder where you want your project to be generated (a folder with the project name will be automatically created)

  2. Execute

springfast
  1. Follow the onscreen instructions

Project configuration and generation of classes

SpringFast can configure your application.yml with the server port and database connection parameters. It can also generate DAOs, DTOs, controllers, services and repositories.

  1. Navigate to the project folder

  2. Execute

springfast
  1. SpringFast will automatically recognize that it's a Spring project and you will have to follow the onscreen instructions

Develop

Build and run on Windows: npm run build; npm i -g .; springfast

Build and run on Linux: npm run build && npm i -g . && springfast