创建多模块项目

本指南将向您展示如何使用 Spring Boot 创建多模块项目。该项目将包含一个库 jar 和一个使用该库的主应用程序。您还可以使用它来了解如何单独构建库(即不是应用程序的 jar 文件)。

您将构建什么

您将设置一个库 jar,它公开一个用于简单“Hello, World”消息的服务,然后将该服务包含在一个使用该库作为依赖项的 Web 应用程序中。

您需要什么

如何完成本指南

与大多数 Spring 入门指南 一样,您可以从头开始并完成每个步骤,也可以绕过您已经熟悉的某些基本设置步骤。无论哪种方式,您最终都会获得可工作的代码。

从头开始,请继续访问 创建根项目

跳过基础知识,请执行以下操作

完成之后,您可以将结果与 gs-multi-module/complete 中的代码进行比较。

首先,您需要设置一个基本的构建脚本。使用 Spring 构建应用程序时,您可以使用任何您喜欢的构建系统,但此处包含了您需要与 GradleMaven 配合使用的代码。如果您不熟悉两者中的任何一个,请参阅 使用 Gradle 构建 Java 项目使用 Maven 构建 Java 项目

创建根项目

本指南将逐步介绍如何构建两个项目,其中一个项目依赖于另一个项目。因此,您需要在根项目下创建两个子项目。但首先,在顶级创建构建配置。对于 Maven,您需要一个包含子目录列表的 pom.xml 文件,其中包含 <modules>

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.springframework</groupId>
    <artifactId>gs-multi-module</artifactId>
    <version>0.1.0</version>
    <packaging>pom</packaging>

    <modules>
        <module>library</module>
        <module>application</module>
    </modules>

</project>

对于 Gradle,您需要一个包含相同目录的 settings.gradle 文件

rootProject.name = 'gs-multi-module'

include 'library'
include 'application'

并且(可选)您可以包含一个空的 build.gradle 文件(以帮助 IDE 识别根目录)。

创建目录结构

在您希望作为根目录的目录中,创建以下子目录结构(例如,在 *nix 系统上使用 mkdir library application

└── library
└── application

在项目的根目录中,您需要设置一个构建系统,本指南将向您展示如何使用 Maven 或 Gradle。

创建库项目

两个项目中的一个作为另一个项目(应用程序)将使用的库。

创建目录结构

library 目录中,创建以下子目录结构(例如,在 *nix 系统上使用 mkdir -p src/main/java/com/example/multimodule/service

└── src
    └── main
        └── java
            └── com
                └── example
                    └── multimodule
                        └── service

现在您需要配置一个构建工具(Maven 或 Gradle)。在这两种情况下,请注意,库项目根本不使用 Spring Boot 插件。该插件的主要功能是创建可执行的“über-jar”,而我们既不需要也不想要库。

虽然没有使用 Spring Boot Maven 插件,但您确实希望利用 Spring Boot 依赖项管理,因此通过使用 Spring Boot 中的 spring-boot-starter-parent 作为父项目来配置它。另一种方法是将依赖项管理作为物料清单 (BOM) 导入到 pom.xml 文件的 <dependencyManagement/> 部分。

设置库项目

对于库项目,您无需添加依赖项。基本的 spring-boot-starter 依赖项提供了您需要的一切。

您可以直接从 Spring Initializr 获取具有必要依赖项的 Maven 构建文件。以下列表显示了选择 Maven 时创建的 pom.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>3.3.0</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>
	<groupId>com.example</groupId>
	<artifactId>library</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>library</name>
	<description>Demo project for Spring Boot</description>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

</project>

您可以直接从 Spring Initializr 获取具有必要依赖项的 Gradle 构建文件。以下列表显示了选择 Gradle 时创建的 build.gradle 文件

plugins {
	id 'org.springframework.boot' version '3.3.0'
	id 'io.spring.dependency-management' version '1.1.5'
	id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'

java {
  sourceCompatibility = '17'
}

repositories {
	mavenCentral()
}

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

调整库项目

如果您从 start.spring.io 生成了库项目,它将包含构建系统的包装器脚本(根据您的选择,为 mvnwgradlew)。您可以将该脚本及其相关的配置移到根目录

$ mv mvnw* .mvn ..
$ mv gradlew* gradle ..

最好让库依赖于最窄的依赖项,而不是启动器。对于我们自己的用途,org.springframework.boot:spring-boot 包含我们所需的所有代码。删除现有条目的 -starter 可以确保库不会引入过多的依赖项。

库项目没有包含 main 方法的类(因为它不是应用程序)。因此,您必须告诉构建系统不要尝试为库项目构建可执行 jar。(默认情况下,Spring Initializr 会构建可执行项目。)

要告诉 Maven 不要为库项目构建可执行 jar,您必须从 Spring Initializr 创建的 pom.xml 中删除以下块

<build>
  <plugins>
    <plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>
    </plugin>
  </plugins>
</build>

以下列表显示了库项目的最终 pom.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>3.2.2</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>
	<groupId>com.example</groupId>
	<artifactId>library</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>library</name>
	<description>Demo project for Spring Boot</description>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

</project>

要告诉 Gradle 不要为库项目构建可执行 jar,您必须将以下块添加到 Spring Initializr 创建的 build.gradle

plugins {
  id 'org.springframework.boot' version '3.2.2' apply false
  id 'io.spring.dependency-management' version '1.1.4'
  // ... other plugins
}

dependencyManagement {
  imports {
    mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
  }
}

bootJar 任务尝试创建可执行 jar,这需要一个 main() 方法。因此,您需要通过禁用 Spring Boot 插件来禁用它,同时保留其依赖项管理功能。

此外,现在我们已经禁用了 Spring Boot 插件,它不再自动配置 JavaCompiler 任务以启用 -parameters 选项。如果您正在使用引用参数名称的表达式,这一点很重要。以下内容启用了此选项

tasks.withType(JavaCompile).configureEach {
  options.compilerArgs.add("-parameters")
}

以下列表显示了库项目的最终 build.gradle 文件

plugins {
	id 'org.springframework.boot' version '3.3.0' apply false
	id 'io.spring.dependency-management' version '1.1.5'
	id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'

java {
  sourceCompatibility = '17'
}

repositories {
	mavenCentral()
}

dependencyManagement {
	imports {
		mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
	}
}

dependencies {
	implementation 'org.springframework.boot:spring-boot'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

tasks.withType(JavaCompile).configureEach {
	options.compilerArgs.add("-parameters")
}

创建服务组件

库将提供一个 MyService 类,应用程序可以使用该类。以下列表(来自 library/src/main/java/com/example/multimodule/service/MyService.java)显示了 MyService

package com.example.multimodule.service;

import org.springframework.boot.context.properties.EnableConfigurationProperties;
import org.springframework.stereotype.Service;

@Service
@EnableConfigurationProperties(ServiceProperties.class)
public class MyService {

  private final ServiceProperties serviceProperties;

  public MyService(ServiceProperties serviceProperties) {
    this.serviceProperties = serviceProperties;
  }

  public String message() {
    return this.serviceProperties.getMessage();
  }
}

为了使其能够以标准的 Spring Boot 习惯用法(使用 application.properties)进行配置,您还可以添加一个 @ConfigurationProperties 类。ServiceProperties 类(来自 library/src/main/java/com/example/multimodule/service/ServiceProperties.java)满足了这一需求

package com.example.multimodule.service;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties("service")
public class ServiceProperties {

  /**
   * A message for the service.
   */
  private String message;

  public String getMessage() {
    return message;
  }

  public void setMessage(String message) {
    this.message = message;
  }
}

您不必这样做。库可能仅仅提供纯 Java API 而不提供 Spring 功能。在这种情况下,使用该库的应用程序需要自行提供配置。

测试服务组件

您需要为库组件编写单元测试。如果您提供可重用的 Spring 配置作为库的一部分,您可能还需要编写集成测试,以确保配置有效。为此,您可以使用 JUnit 和 @SpringBootTest 注解。以下列表(来自 library/src/test/java/com/example/multimodule/service/MyServiceTest.java)显示了如何执行此操作

package com.example.multimodule.service;

import static org.assertj.core.api.Assertions.assertThat;

import org.junit.jupiter.api.Test;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest("service.message=Hello")
public class MyServiceTest {

  @Autowired
  private MyService myService;

  @Test
  public void contextLoads() {
    assertThat(myService.message()).isNotNull();
  }

  @SpringBootApplication
  static class TestConfiguration {
  }

}
在前面的列表中,我们使用 @SpringBootTest 注解的默认属性配置了测试的 service.message。我们**不建议**将 application.properties 放入库中,因为在运行时可能会与使用该库的应用程序发生冲突(永远只会从类路径加载一个 application.properties)。您可以将 application.properties 放入测试类路径中,但不要将其包含在 jar 中(例如,将其放在 src/test/resources 中)。

创建应用程序项目

应用程序项目使用库项目,该项目提供其他项目可以使用的服务。

创建目录结构

application 目录中,创建以下子目录结构(例如,在 *nix 系统上使用 mkdir -p src/main/java/com/example/multimodule/application

└── src
    └── main
        └── java
            └── com
                └── example
                    └── multimodule
                        └── application

除非您想通过应用程序中的 @ComponentScan 将所有 Spring 组件包含在库中,否则请不要使用与库相同的包(或库包的父包)。

设置应用程序项目

对于应用程序项目,您需要 Spring Web 和 Spring Boot Actuator 依赖项。

您可以直接从 Spring Initializr 获取具有必要依赖项的 Maven 构建文件。以下列表显示了选择 Maven 时创建的 pom.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>3.3.0</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>
	<groupId>com.example</groupId>
	<artifactId>application</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>application</name>
	<description>Demo project for Spring Boot</description>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

</project>

您可以直接从 Spring Initializr 获取具有必要依赖项的 Gradle 构建文件。以下列表显示了选择 Gradle 时创建的 build.gradle 文件

plugins {
	id 'org.springframework.boot' version '3.3.0'
	id 'io.spring.dependency-management' version '1.1.5'
	id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'

java {
	sourceCompatibility = '17'
}

repositories {
	mavenCentral()
}

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-actuator'
	implementation 'org.springframework.boot:spring-boot-starter-web'
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

您可以删除 mvnw 和/或 gradlew 包装器及其相关的配置文件

$ rm -rf mvnw* .mvn
$ rm -rf gradlew* gradle

添加库依赖项

应用程序项目需要依赖于库项目。您需要相应地修改应用程序构建文件。

对于 Maven,请添加以下依赖项

<dependency>
  <groupId>com.example</groupId>
  <artifactId>library</artifactId>
  <version>${project.version}</version>
</dependency>

以下列表显示了完成的 pom.xml 文件

<?xml version="1.0" encoding="UTF-8"?>
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>3.3.0</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>
	<groupId>com.example</groupId>
	<artifactId>application</artifactId>
	<version>0.0.1-SNAPSHOT</version>
	<name>application</name>
	<description>Demo project for Spring Boot</description>
	<dependencies>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-actuator</artifactId>
		</dependency>
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-web</artifactId>
		</dependency>
		<dependency>
			<groupId>com.example</groupId>
			<artifactId>library</artifactId>
			<version>${project.version}</version>
		</dependency>

		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-test</artifactId>
			<scope>test</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
			</plugin>
		</plugins>
	</build>

</project>

对于 Gradle,请添加以下依赖项

implementation project(':library')

以下列表显示了完成的 build.gradle 文件

plugins {
	id 'org.springframework.boot' version '3.3.0'
	id 'io.spring.dependency-management' version '1.1.5'
	id 'java'
}

group = 'com.example'
version = '0.0.1-SNAPSHOT'

java {
	sourceCompatibility = '17'
}

repositories {
	mavenCentral()
}

dependencies {
	implementation 'org.springframework.boot:spring-boot-starter-actuator'
	implementation 'org.springframework.boot:spring-boot-starter-web'
	implementation project(':library')
	testImplementation 'org.springframework.boot:spring-boot-starter-test'
}

编写应用程序

应用程序中的主类可以是一个 @RestController,它使用库中的 Service 来呈现消息。以下列表(来自 application/src/main/java/com/example/multimodule/application/DemoApplication.java)显示了这样一个类

package com.example.multimodule.application;

import com.example.multimodule.service.MyService;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

@SpringBootApplication(scanBasePackages = "com.example.multimodule")
@RestController
public class DemoApplication {

  private final MyService myService;

  public DemoApplication(MyService myService) {
    this.myService = myService;
  }

  @GetMapping("/")
  public String home() {
    return myService.message();
  }

  public static void main(String[] args) {
    SpringApplication.run(DemoApplication.class, args);
  }
}

@SpringBootApplication 是一个便捷注解,它添加了以下所有内容:

  • @Configuration:将类标记为应用程序上下文的 bean 定义的来源。

  • @EnableAutoConfiguration:告诉 Spring Boot 开始根据类路径设置、其他 bean 和各种属性设置添加 bean。例如,如果 spring-webmvc 位于类路径中,则此注解将应用程序标记为 Web 应用程序并激活关键行为,例如设置 DispatcherServlet

  • @ComponentScan:告诉 Spring 在 com/example 包中查找其他组件、配置和服务,让它找到控制器。

main() 方法使用 Spring Boot 的 SpringApplication.run() 方法启动应用程序。您是否注意到没有一行 XML?也没有 web.xml 文件。此 Web 应用程序是 100% 纯 Java,您无需处理任何管道或基础设施的配置。

因为 DemoApplication 位于与 MyService (com.example.multimodule.service) 不同的包 (com.example.multimodule.application) 中,@SpringBootApplication 无法自动检测它。有多种方法可以拾取 `MyService`

  • 使用 @Import(MyService.class) 直接导入它。

  • 使用`@SpringBootApplication(scanBasePackageClasses={…​})`从其包中获取所有内容。

  • 按名称指定父包:`com.example.multimodule`。(本指南使用此方法)

如果您的应用程序也使用JPA或Spring Data,则`@EntityScan`和`@EnableJpaRepositories`(以及相关)注解仅在其未明确指定的情况下从`@SpringBootApplication`继承其基本包。也就是说,一旦您指定了`scanBasePackageClasses`或`scanBasePackages`,您可能还需要显式地使用`@EntityScan`和`@EnableJpaRepositories`并显式配置其包扫描。

创建`application.properties`文件

您需要在`application.properties`文件中为库中的服务提供消息。在源文件夹中,您需要创建一个名为`src/main/resources/application.properties`的文件。以下清单显示了一个可用的文件

service.message=Hello, World

测试应用程序

通过启动应用程序来测试端到端结果。您可以在IDE中启动应用程序,也可以使用命令行。应用程序运行后,在浏览器中访问客户端应用程序,地址为`https://127.0.0.1:8080/`。在那里,您应该看到响应中反映的`Hello, World`。

如果您使用Gradle,则以下命令(实际上是依次运行的两个命令)将首先构建库,然后运行应用程序

$ ./gradlew build && ./gradlew :application:bootRun

如果您使用Maven,则以下命令(实际上是依次运行的两个命令)将首先构建库,然后运行应用程序

$ ./mvnw install && ./mvnw spring-boot:run -pl application

总结

恭喜!您已使用Spring Boot创建了一个可重用的库,然后使用该库构建了一个应用程序。

另请参阅

以下指南可能也有帮助

想要编写新的指南或贡献现有指南?请查看我们的`贡献指南`。

所有指南均采用ASLv2许可证发布代码,并采用`署名-非衍生作品创作共用许可证`发布文本。

获取代码