Springboot+Maven多模块项目开发
在Spring Boot中创建多模块项目,你可以使用Maven来构建。以下是创建多模块项目的步骤:
- 创建父项目:
mvn archetype:generate -DgroupId=com.example -DartifactId=parent-project -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
- 修改父项目的
pom.xml
文件,设置<packaging>
为pom
:
<groupId>com.example</groupId>
<artifactId>parent-project</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
- 在父项目目录下创建子模块:
mvn archetype:generate -DgroupId=com.example.module -DartifactId=module1 -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false
- 修改父项目的
pom.xml
文件,添加子模块:
<modules>
<module>module1</module>
</modules>
- 重复步骤3和4来创建更多的子模块。
以下是一个简单的多模块项目的pom.xml
示例:
父项目的pom.xml
:
<groupId>com.example</groupId>
<artifactId>parent-project</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
<module>module1</module>
<module>module2</module>
</modules>
<properties>
<java.version>1.8</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>parent-project</artifactId>
<version>1.0-SNAPSHOT</version>
</parent>
<groupId>com.example.module</groupId>
<artifactId>module1</artifactId>
<dependencies>
<!-- 子模块的依赖,如果需要使用父项目的依赖,不需要再次声明 -->
</dependencies>
这样,你就创建了一个Spring Boot和Maven的多模块项目。每个子模块可以是一个Spring Boot应用,可以包含自己的Controller、Service等组件,最终可以通过父项目打包成一个可执行的JAR或WAR。
评论已关闭