IDEA社区版使用Maven archetype 创建Spring boot 项目
在IntelliJ IDEA中使用Maven archetype创建Spring Boot项目的步骤如下:
- 打开IntelliJ IDEA。
- 点击
Create New Project
。 - 在弹出的对话框中,选择
Maven
。 - 选择或填写相关的GroupId和ArtifactId。
- 在
Location
中填写项目的目录路径。 - 点击
Next
,然后选择或者输入Spring Boot的archetype。 - 填写
Version
如果需要的话,然后点击Next
。 - 填写项目名称和描述,点击
Finish
。
以下是使用Maven archetype创建Spring Boot项目的命令行示例:
mvn archetype:generate \
-DgroupId=com.example \
-DartifactId=my-spring-boot-app \
-DarchetypeGroupId=org.springframework.boot \
-DarchetypeArtifactId=spring-boot-starter-parent \
-DarchetypeVersion=2.5.6 \
-DinteractiveMode=false
在IntelliJ IDEA中,上述步骤会自动完成。如果需要手动执行命令,可以在项目的根目录下打开终端,并运行以上Maven命令。
评论已关闭