Spring Boot 支持多模塊項目的打包,可以使用 Maven 或 Gradle 構建工具來實現。下面是使用 Maven 打包多模塊項目的步驟:
<modules>
<module>module1</module>
<module>module2</module>
...
</modules>
<parent>
<groupId>com.example</groupId>
<artifactId>parent</artifactId>
<version>1.0</version>
</parent>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<build>
<finalName>module1</finalName>
</build>
mvn clean package
打包完成后,可以在各個子模塊的 target 目錄下找到生成的可執行 JAR 文件。