gpt4 book ai didi

java restful 服务作为 jar 对 war 的依赖

转载 作者:搜寻专家 更新时间:2023-10-31 20:32:33 24 4
gpt4 key购买 nike

我在一个项目中有两个不同的 Maven 模块,一个是带有 angular js 东西的 ui 模块,另一个是带有 jersey 的 restful web 服务的服务模块。我的问题是,我是否可以将此服务模块作为依赖项添加到 pom.xml 中的 ui 模块,并从 ui 模块将其用作服务。这里的想法是不要将两者部署为不同的 war ,而是作为一个。

最佳答案

您可以将服务模块生成为 JAR。 pom.xml 应该包含:

<packaging>jar</packaging>

<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.2</version>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</configuration>
<executions>
<execution>
<id>make-assembly</id>
<phase>install</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>

在您的主项目中创建 libs 文件夹,并将生成的 JAR 文件放在那里。主项目 pom.xml 应包含:

    <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
<version>2.5.2</version>
<executions>
<execution>
<id>install-external</id>
<phase>clean</phase>
<configuration>
<file>${basedir}/libs/your_service.jar</file>
<repositoryLayout>default</repositoryLayout>
<groupId>your_service</groupId>
<artifactId>your_service</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<generatePom>true</generatePom>
</configuration>
<goals>
<goal>install-file</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- External lib -->
<dependency>
<groupId>your_service</groupId>
<artifactId>your_service</artifactId>
<version>1.0</version>
<!-- <systemPath>${basedir}/libs/your_service.jar</systemPath> -->
<!-- <scope>system</scope> -->
</dependency>

关于java restful 服务作为 jar 对 war 的依赖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39824781/

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