创建含有多个module的Spring Boot工程可以采用Maven作为项目管理工具。下面将介绍如何创建这样的工程。

1. 创建父工程

首先,需要创建一个包含多个module的父工程。在项目的根目录下创建一个名为pom.xml的文件,作为父工程的配置文件。

在pom.xml中,定义一个父工程的groupId和artifactId,并添加子module的信息。通过添加标签,在其中列出所有的子module。同时,也可以在标签中添加所需的依赖。

<project xmlns="http://maven.apache.org/POM/4.0.0"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>com.example</groupId>
    <artifactId>parent-project</artifactId>
    <version>1.0.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <modules>
        <module>module1</module>
        <module>module2</module>
    </modules>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-starter-parent</artifactId>
                <version>2.4.3</version>
                <relativePath>../pom.xml</relativePath>
            </dependency>
            <!-- other dependencies -->
        </dependencies>
    </dependencyManagement>

</project>

2. 创建子module

接下来,需要为工程添加子module。在父工程所在的目录中,通过命令行进入命令。

cd parent-project

然后,使用Maven命令创建子module。可以使用下面的命令创建一个名为module1的子module。

mvn archetype:generate -DgroupId=com.example -DartifactId=module1 -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=false

重复上述步骤,为每个子module创建一个对应的目录,并为其设置相应的groupId和artifactId。

创建完子module后,可以在每个子module的目录下创建各自的pom.xml文件,并添加相应的依赖。这些依赖会继承自父工程。

3. 配置子module之间的依赖

子module之间的依赖可以在父工程的pom.xml文件中定义。在标签中,列出所有子module之间的依赖。

<dependencies>
    <dependency>
        <groupId>com.example</groupId>
        <artifactId>module1</artifactId>
        <version>1.0.0-SNAPSHOT</version>
    </dependency>
    <dependency>
        <groupId>com.example</groupId>
        <artifactId>module2</artifactId>
        <version>1.0.0-SNAPSHOT</version>
    </dependency>
</dependencies>

4. 构建和运行工程

在根目录下执行Maven命令来构建整个工程。

mvn clean install

构建完工程后,可以在每个子module的target目录中找到相应的jar包。即可使用java -jar命令运行Spring Boot应用程序。

通过以上步骤,就创建了一个含有多个module的Spring Boot工程。每个module可以独立运行,并且可以根据需要进行依赖管理。