我写了一些使用resteasy库的代码。
该代码在Eclipse中运行良好,但是当使用maven shade插件以fat-jar构建方式执行时,会产生异常。
原因:在META-INF / services / javax.ws.rs.ext.Providers下创建的jar中,仅列出了resteasy-client中的提供者。 但是,我还需要resteasy-jackson2-provider和resteasy-jaxrs的提供程序。
我认为问题可能是,所有3个库(resteasy-client,resteasy-jackson2-provider,resteasy-jaxrs)都使用同名文件列出其提供程序(META-INF / services / javax.ws.rs .ext.Providers)。 那么,也许maven会用一个库中的提供者列表覆盖另一个库中的提供者列表?
我的pom.xml看起来像这样:
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId>
<version>3.6.1.Final</version>
</dependency>
<dependency>
<groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson2-provider</artifactId>
<version>3.6.1.Final</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.3</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.0</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<manifestEntries>
<Main-Class>playarounds.ServiceMainClass</Main-Class>
</manifestEntries>
</transformer>
</transformers>
<artifactSet/>
<outputFile>${project.build.directory}/${project.artifactId}-${project.version}-fat.jar</outputFile>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
答案 0 :(得分:4)
好的,我找到了解决方法。
Maven阴影插件可让您强制附加名称相同的文件...
因此pom.xml中滞后的maven-shade-plugin是:
hasAttribute
答案 1 :(得分:2)
可接受的答案是正确的,但适用于Maven的Shade插件。如果您使用的是Gradle的Shadow插件,则必须merge service descriptor files。
使用Gradle的Kotlin DSL:
tasks {
withType<ShadowJar> { mergeServiceFiles() }
}
使用Gradle的Groovy DSL:
shadowJar { mergeServiceFiles() }