我遇到了Axiom和Mule的一系列问题,可在此处找到背景信息:
https://stackoverflow.com/questions/34164577/classloader-overrides-not-working-in-mule
正如上一期的评论中提到的,由于冲突的罐子,我能够使用maven shade来覆盖mule中axiom-api的包名。 Mule在服务器中加载了axiom-api和axiom-impl的版本。我在连接器中使用了不同版本的axiom-api和axiom-dom。 (连接器在anypoint studio之外进行精细测试)
使用maven shade,我重命名:
org.apache.axiom
到
org.apache.1.2.14.axiom
这解决了由于jar版本冲突而未找到的方法的原始问题。我遇到的问题是:
org.apache.axiom.om.impl.dom.factory.OMDOMMetaFactoryLoader cannot be cast to org.apache.1.2.14.axiom.locator.loader.OMMetaFactoryLoader (java.lang.ClassCastException) org.apache.1.2.14.axiom.locator.ImplementationFactory:133 (null)
我认为这是因为用maven阴影重命名了axiom-api的包裹。我的maven阴影配置看起来像这样:
<configuration>
<artifactSet>
<includes>
<include>org.apache.ws.commons.axiom:*</include>
</includes>
</artifactSet>
<relocations>
<relocation>
<pattern>org.apache.axiom</pattern>
<shadedPattern>org.apache.1.2.14.axiom</shadedPattern>
</relocation>
</relocations>
</configuration>
所以,它实际上应该重命名为axiom-dom以及,但它不会。
我相信这是因为classloader只加载了一个axiom-dom包的实例。要解决这个问题,我相信我只需要重命名:
org.apache.axiom.om.impl.dom.factory.OMDOMMetaFactoryLoader
到
org.apache.1.2.14.axiom.om.impl.dom.factory.OMDOMMetaFactoryLoader
我找到了一个axiom.xml的例子:
我无法找到关于此文件的任何文档,但我看到它在源代码中的使用位置。我以为我可以改写:
<implementation loader="org.apache.axiom.om.impl.dom.factory.OMDOMMetaFactoryLoader" name="doom">
<feature name="dom" priority="100"/>
</implementation>
到
<implementation loader="org.apache.1.2.14.axiom.om.impl.dom.factory.OMDOMMetaFactoryLoader" name="doom">
<feature name="dom" priority="100"/>
</implementation>
但这没有效果。有没有办法覆盖厄运加载器类名?
答案 0 :(得分:1)
要自动执行必要的转换,您可以使用以下配置:
<plugins>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<artifactSet>
<includes>
<include>org.apache.ws.commons.axiom:*</include>
</includes>
</artifactSet>
<transformers>
<transformer implementation="org.apache.axiom.buildutils.shade.axiomxml.AxiomXmlResourceTransformer" />
</transformers>
<relocations>
<relocation>
<pattern>org.apache.axiom</pattern>
<shadedPattern>org.apache.1.2.14.axiom</shadedPattern>
</relocation>
</relocations>
</configuration>
</execution>
</executions>
<dependencies>
<dependency>
<groupId>org.apache.ws.commons.axiom</groupId>
<artifactId>shade-axiom-xml</artifactId>
<version>1.2.17-SNAPSHOT</version>
</dependency>
</dependencies>
</plugin>
</plugins>
您需要将Apache快照存储库添加到POM中(因为还没有包含change的版本,这使得它可以正常工作):
<repositories>
<repository>
<id>apache.snapshots</id>
<name>Apache Snapshot Repository</name>
<url>http://repository.apache.org/snapshots</url>
<releases>
<enabled>false</enabled>
</releases>
</repository>
</repositories>
请注意,shade-axiom-xml
版本1.2.17-SNAPSHOT
应该可以与Axiom 1.2.14一起使用,即您不需要更改您所依赖的Axiom库的版本。
另外,请注意,由于您使用的是Axis2而Axis2依赖于Axiom,因此您需要在工件集中包含所有Axis2 JAR。
答案 1 :(得分:1)
当发生此类ClassCastException时,可以尝试从着色中排除有问题的类(应用程序正在强制转换为,但在您的情况下,您应该排除org.apache.axiom.locator.loader.OMMetaFactoryLoader)。
你可以这样做:
<relocations>
<relocation>
<pattern>org.apache.axiom</pattern>
<shadedPattern>org.apache.1.2.14.axiom</shadedPattern>
<excludes>
<exclude>org.apache.axiom.locator.loader.OMMetaFactoryLoader</exclude>
</excludes>
</relocation>
</relocations>