[Spring Boot Study Notes 02] Quickly build Spring Boot projects

[Spring Boot study notes 02] IDEA quickly build Spring Boot projects

1. New project

Insert picture description here

2. IDEA: Use Spring Initializer to quickly create a project

IDEs support the use of Spring’s project creation wizard to quickly create a Spring Boot project, remember to select the local jdk version

Insert picture description here

3. If you do not see the option of Spring Initializer

Search for Spring Boot in File--Settings--Plugins to import it

Insert picture description here

4. Group and Artifact are the organization and project name of the project

Group and Artifact are two coordinates in Maven (Java-based automated construction tool), which define a specific project

Insert picture description here

5. Select the modules that need to be imported, such as importing Spring Web modules

Insert picture description here

6. Complete the project creation

Insert picture description here

7. Project structure

Insert picture description here

Guess you like

Origin blog.csdn.net/hkdhkdhkd/article/details/111239146