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