gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-05 05:01:57 26 4
gpt4 key购买 nike

我有一个由两个模块组成的项目。

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

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

当然,这里最好的选择是将 Service 部署到某个远程主机,但是如果我想在本地机器上启动 Service,有哪些选择呢?

第一个想法是打包服务模块,然后使用 maven-dependency-pluginjar 复制到第二个模块并启动它:

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

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

最佳答案

您可以构建安装第一个模块作为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>

关于java - 如何从另一个 Maven 模块启动 Spring Boot 应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62415970/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com