gpt4 book ai didi

java - Maven - 将 war 依赖添加到另一场 war 中

转载 作者:太空宇宙 更新时间:2023-11-04 09:57:41 27 4
gpt4 key购买 nike

我正在开发一个 Jersey Web 应用程序,用作聊天机器人的 Webhook,目前我有一个处理基本连接的通用服务,现在我想创建一个能够使用通用服务的特定应用程序 Webhook。

我已经将通用 Web 应用程序添加为 Maven 依赖项,并且可以在我的工作区中使用它,但是在部署到 tomcat 时出现错误:

[org.glassfish.jersey.server.ContainerException: java.lang.NoClassDefFoundError:
.../generic/services/Webhook] with root cause
java.lang.ClassNotFoundException: ...generic.services.Webhook

通用服务 pom 文件:

<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
</parent>
<artifactId>...-generic-services</artifactId>
<name>...</name>
<groupId>...</groupId>
<packaging>jar</packaging>

<properties>
<jersey.version>2.27</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.glassfish.jersey</groupId>
<artifactId>jersey-bom</artifactId>
<version>${jersey.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
...
</dependencies>

<build>
<finalName>...</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<inherited>true</inherited>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<configuration>
<attachClasses>true</attachClasses>
</configuration>
</plugin>
</plugins>
</build>

应用服务 pom 文件:

<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>...</groupId>
<artifactId>...</artifactId>
<version>...</version>
</parent>
<artifactId>...-app-services</artifactId>
<name>...</name>
<groupId>...</groupId>
<packaging>war</packaging>
<properties>
<jersey.version>2.27</jersey.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>..generic.services</groupId>
<artifactId>...-generic-services</artifactId>
<version>...</version>
<classifier>classes</classifier>
</dependency>
</dependencies>

<build>
<finalName>...-app-services</finalName>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<inherited>true</inherited>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>

所以我基本上想要完成的是能够从应用程序服务 webapp 调用通用服务函数,例如,如果在通用服务中有一个接收并返回 json 的函数,那么我希望能够在应用程序中创建这样的函数,并使用 json 调用通用服务函数并从中接收。

最佳答案

您无法将 WAR 添加为 Maven 依赖项。 WAR 有一个 Servlet 容器和 JEE 服务器可以理解的特定布局。其他工具无法理解此布局,例如Maven 期望依赖项是 JAR。

此问题通常可以通过提取存储共享代码的新 services-common Maven 模块或将 WAR 之外的 Java 代码移至新的 JAR Maven 模块来解决。

您可以尝试使用WAR Overlays来实现你想要的,但它不会像提取新的 JAR 模块那么干净。

关于java - Maven - 将 war 依赖添加到另一场 war 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53911377/

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