带有 Spring Boot 的多模块 Web 应用程序 Maven 架构

Posted

技术标签:

【中文标题】带有 Spring Boot 的多模块 Web 应用程序 Maven 架构【英文标题】:Multi module web application maven architecture with Spring boot 【发布时间】:2019-08-13 05:22:12 【问题描述】:

我正在构建一个包含多个模块的 Web 应用程序,并且我想将这些模块中的每一个拆分为一个项目。这是我第一次尝试做这样的事情,我曾经在一个项目中制作应用程序,我不想以错误的架构开始开发。 我想做什么:

--Maven parent project
    -- main app: Spring boot, Database connection, authentication, user management.
    -- Module 1,2 .. n: modules, repositories, controllers

因此,我们的想法是从用例角度按功能拆分项目。问题是:这个架构可以正常工作吗?如何使用 maven 进行配置?

【问题讨论】:

你可能需要先参考这个spring.io/guides/gs/multi-module 【参考方案1】:

你需要这样的东西:

1) 有一个父 pom 将所有内容组合在一起,这是您的父级,它有一个 spring-boot 的父级:

<?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 http://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>1.4.3.RELEASE</version>
    </parent>

    <groupId>com.essexboy</groupId>
    <artifactId>boot-parent</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <modules>
        <module>boot-library</module>
        <module>boot-web</module>
    </modules>

</project>

2) 拥有任意数量的库模块:

<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <artifactId>boot-parent</artifactId>
    <groupId>com.essexboy</groupId>
    <version>1.0-SNAPSHOT</version>
  </parent>

  <artifactId>boot-library</artifactId>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

</project>

3) 然后拥有任意数量的 Spring Boot 模块,以便从同一个项目中提取所需的库:

<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <artifactId>boot-parent</artifactId>
        <groupId>com.essexboy</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>

    <artifactId>boot-web</artifactId>

    <dependencies>
        <dependency>
            <groupId>com.essexboy</groupId>
            <artifactId>boot-library</artifactId>
            <version>$project.version</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <!-- tag::actuator[] -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-actuator</artifactId>
        </dependency>
        <!-- end::actuator[] -->
        <!-- tag::tests[] -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
        <!-- end::tests[] -->
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
            <plugin>
                <artifactId>maven-failsafe-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>integration-test</goal>
                            <goal>verify</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

【讨论】:

以上是关于带有 Spring Boot 的多模块 Web 应用程序 Maven 架构的主要内容,如果未能解决你的问题,请参考以下文章

如何将 Spring Boot 项目集成到已经存在的多模块 Maven 项目中?

Spring Boot 与 POM 打包聚合器

多模块项目的 Spring Boot 组件扫描问题

带有 Spring Data 的 Spring Boot Maven 多模块项目

带有 MVC 的 Spring Boot SOAP Web 服务

带有 spring-boot-starter-web 的 Spring Cloud Gateway