IDEA构建SpringBoot多模块项目
在IDEA中构建Spring Boot多模块项目的步骤如下:
- 打开IntelliJ IDEA,点击
Create New Project
。 - 选择
Spring Initializr
,然后点击Next
。 - 输入项目的基本信息,如
Group
、Artifact
和Type
,然后点击Next
。 - 选择需要的依赖,比如
Web
和JPA
,然后点击Next
。 - 选择项目位置,点击
Finish
创建项目。 - 创建子模块:右键点击项目根目录,选择
New
->Module
,按照步骤2到5创建子模块。 - 配置多模块项目:在项目根目录的
pom.xml
文件中添加<modules>
标签指定子模块。
以下是一个简单的多模块项目的 pom.xml
示例:
<groupId>com.example</groupId>
<artifactId>multi-module-project</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>web-module</module>
<module>service-module</module>
</modules>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.1.RELEASE</version>
<relativePath/>
</parent>
<properties>
<java.version>11</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
子模块的 pom.xml
示例:
<parent>
<groupId>com.example</groupId>
<artifactId>multi-module-project</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>com.example</groupId>
<artifactId>web-module</artifactId>
<dependencies>
<!-- 其他依赖 -->
</dependencies>
以上步骤和配置足以在IDEA中构建一个基本的Spring Boot多模块项目。
评论已关闭