如何从另一个Maven模块启动Spring Boot应用程序?

时间:2020-06-16 19:13:59

标签: java spring spring-boot maven

我有一个包含两个模块的项目。

  • 第一个是Spring Boot REST Web服务
  • 第二个是与此服务一起使用的代码。

问题:我需要从代码中的另一个模块启动Web Service。

当然,这里最好的选择是将Service部署到某个远程主机,但是如果我想在本地计算机上启动Service,该怎么办?

第一个想法是打包Service模块,然后使用jarmaven-dependency-plugin复制到第二个模块,并以以下方式启动它:

Runtime.getRuntime().exec("java -jar my-rest-service.jar");

我可以直接从另一个模块启动Spring Boot应用程序吗?调用Application.main()方法还是其他方法?

2 个答案:

答案 0 :(得分:1)

您可以buildinstall第一个模块作为.m2库进入本地Maven存储库(默认为jar文件夹)。然后,您可以在第二个模块中将该库用作maven依赖项。

此后,您可以像通常spring-boot一样启动-使用main方法来启动应用程序(第二个模块)。


示例:

第一个模块-库:

<?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>

    <url>https://example.com/module1</url>

    <groupId>com.example</groupId>
    <artifactId>module1</artifactId>
    <name>module1</name>
    <version>1.0.0</version>
    <packaging>jar</packaging>

    <properties>
        <java.version>12</java.version>
    </properties>

    <build>
        <finalName>module1</finalName>
        <defaultGoal>install</defaultGoal>

        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <inherited>true</inherited>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>3.2.1</version>
                <executions>
                    <execution>
                        <id>attach-sources</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

第二个模块-应用程序:

<?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>

    <url>https://example.com/module2</url>

    <groupId>com.example</groupId>
    <artifactId>module2</artifactId>
    <name>module2</name>
    <version>1.0.0</version>
    <packaging>jar</packaging>
    <!--packaging>war</packaging-->

    <properties>
        <java.version>12</java.version>
    </properties>

    <build>
        <finalName>module2</finalName>
        <defaultGoal>package</defaultGoal>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>${java.version}</source>
                    <target>${java.version}</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <!-- com.example -->
        <dependency>
            <groupId>com.example</groupId>
            <artifactId>module1</artifactId>
            <version>1.0.0</version>
        </dependency>
    </dependencies>
</project>

答案 1 :(得分:0)

Spring Boot Maven插件将我们的应用程序打包为可执行JAR文件-由于将类文件放入ReturnUrl中,因此该文件不能在其他项目中使用。

为了与另一个项目共享类,最好的方法是创建一个包含共享类的单独的jar,然后使其成为依赖它们的所有模块的依赖。

因此,在您的spring boot模块中,您需要添加以下分类器:

BOOT-INF/classes

当然,您需要在要使用的pom中添加spring boot模块依赖项,然后才能使用... <build> ... <plugins> ... <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <classifier>exec</classifier> </configuration> </plugin> </plugins> </build>


请在此处检查:Using a Spring Boot Application as a Dependency