我写了一些使用一些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.供应商)。
因此,也许 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>

最佳答案

好的,我找到了解决方案。

Maven shade 插件允许您强制附加同名的文件...

那么 pom.xml 中的 maven-shade-plugin 滞后的是:

<transformer implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
  <resource>META-INF/services/javax.ws.rs.ext.Providers</resource>
</transformer>

https://maven.apache.org/plugins/maven-shade-plugin/examples/resource-transformers.html#AppendingTransformer

关于java - mvn 包后缺少 resteasy 提供程序,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52715747/

10-11 06:03