Two ways to create a new Spring Boot project - (Method 1)

Create a new Spring Boot project: (Method 1)

There are two ways to create a new Spring Boot project . The following is the first way.
Spring official website: start.spring.io

one,

Insert image description here

I chose Maven for Project (make your choice based on your own project) and select Java for
Language .

two,

Insert image description here

Choose Spring Boot version 2.6.7 (the SNAPSHOT version will change at any time, so try not to select it. Other brackets will be selected depending on the specific situation. Just choose the version without brackets here)

Note: The Spring Boot version is updated and iterated quickly. When you read this blog, the version number may have been updated again. Also, the versions provided on the official website are rarely not enough for us. If there is no version you want, you can still create it first, and then change it to the version you actually need in the project.

three,

Insert image description here

Project Metadata is a name related to the project according to your own requirements. The three that are not marked do not need to be changed. Choosing Jar package or War also depends on your actual needs. Here I choose Jar package. For Java version, select Java 8 here

Four,

Insert image description here
Insert image description here
Insert image description here

At this point the project is configured. (over)

Insert image description here

Here is a brief introduction to these three buttons:
1. Click generate to generate a project package that we have configured.
2. Preview the things that have been configured in the project.
3. Click share and there will be a link. Share the link with friends. You will get a project with the same configuration

Guess you like

Origin blog.csdn.net/Turniper/article/details/124598839