How to create spring boot project

How to create spring boot project

Create a new Spring Boot project using start.spring.io

  1. Open your browser and navigate to the  https://start.spring.io.
  2. From the “Project” dropdown, select “Gradle — Kotlin”.
  3. Choose “Kotlin” as the language.
  4. In the “SpringBoot” section, input the desired Spring Boot version — in this case, “3.0.5.”
  5. In the “Project Metadata” section, provide the Group, Artifact, Name, and Description of your project.
  6. Under “Packaging,” select “Jar.”
  7. In the “Dependencies” section, search for “web” and select “ Spring Web” to include the necessary web dependencies.
  8. Click on “Generate” to download the project as a zip file.
  9. Extract the zip file and open the project in IntelliJ IDEA.

Read more

Automating a Scalable Command, Query and Event Package Structure with a Batch Script

Automating a Scalable Command, Query and Event Package Structure with a Batch Script

Introduction As backend applications grow, maintaining a consistent project structure becomes increasingly important. In a small application, developers can manually create packages and folders whenever a new business entity or feature is introduced. However, in a larger application following architectural patterns such as CQRS, Domain-Driven Design, and event-driven architecture, every

By Sangram Ekshinge