Project creation in spring boot and eclipse IDE
Today we will learn how to create a new project in String Boot.
For this we will first go to https://start.spring.io where we will generate our project. And at the same time, we will also add the necessary dependencies.
1. Open https://start.spring.io/
2. select project (Maven), Language (Java), Spring Boot(select stable version. Don't select any M1 or SNAPSHOT version), enter Group, Artifact and Name in left side
3. Select required dependency in right side section.
4. After selection of all dependency click on Generate button. it creates an zip file.
5. Extract zip file in your local derive.
6. Open Eclipse IDE. go to File - Import - Maven - Existing Maven Project
7. Select extracted zip folder in ROOT Directory and click finish.
Thank you.
#mydigitalnote
#springboot
#eclipse
#java
#Software