如何在Spring启动中运行多模块项目

时间:2017-10-06 10:16:20

标签: eclipse spring-boot multi-module parent-pom

我的maven项目结构:

My maven project structure

我的问题是,我只需要运行父模块,即自动实例化该子模块(tomcat服务器)。弹簧启动多模块项目是否可能?

注意:我正在使用STS。 父包装是pom,子模块包装是jar文件。

我的父pom文件

http://maven.apache.org/xsd/maven-4.0.0.xsd">     4.0.0

<groupId>com.test</groupId>
<artifactId>test-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>

<name>test-parent</name>
<description>testproject for Spring Boot</description>

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.7.RELEASE</version>
    <relativePath /> <!-- lookup parent from repository -->
</parent>

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <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>
<modules>
    <module>userService</module>
    <module>authenticationService</module>
    <module>dataLayerService</module>
</modules>

我的问题是如何使用tomcat运行父项目?如果我运行父项目,子模块会自动运行吗?

提前致谢!!!

1 个答案:

答案 0 :(得分:0)

我已在一个docker-compose文件中配置了所有微服务。使用docker-compose up命令启动所有模块。(将一个微服务作为服务,其他模块是子微服务)