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