gpt4 book ai didi

java - 部署到 WildFly 时出错 : "Caused by: java.lang.ClassCastException: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory"

转载 作者:行者123 更新时间:2023-12-02 04:39:29 27 4
gpt4 key购买 nike

当我尝试将 Java EE 应用程序部署到 WildFly 15.0.1.Final 时,我不断看到此错误。

我看到 org.apache.directory.api::api-all depends on org.apache.servicemix.bundles::org.apache.servicemix.bundles.dom4j,以及后者依赖项 depends on org.dom4j::dom4j。另一方面,我的WildFly安装在modules/system/layers/base/org/dom4j/main/中有dom4j-2.1.1.jar

我在 pom.xml 中尝试了各种方法,例如使用 org.apache.servicemix.bundles::org.apache.servicemix.bundles.dom4j 和 org.dom4j::dom4j,排除它们中的每一个并指定“规定”的范围。没有任何效果。

这是我的 pom.xml 中的片段:

<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<failOnMissingWebXml>false</failOnMissingWebXml>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<finalWarName>ldapuserimport</finalWarName>
</properties>

<dependencies>
<!-- Java EE 7 dependency -->
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.ejb</groupId>
<artifactId>jboss-ejb-api_3.2_spec</artifactId>
<version>1.0.2.Final</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.annotation</groupId>
<artifactId>jboss-annotations-api_1.3_spec</artifactId>
<version>1.0.1.Final</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0.2</version>
</dependency>
<dependency>
<groupId>org.apache.directory.api</groupId>
<artifactId>api-all</artifactId>
<version>1.0.3</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.26</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>27.1-jre</version>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.wildfly.plugins</groupId>
<artifactId>wildfly-maven-plugin</artifactId>
<version>2.0.1.Final</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.6</version>
</plugin>
</plugins>
</build>

您能建议如何解决这个问题吗?

最佳答案

您的依赖项之一具有 dom4j 旧版本,并且服务器使用该版本。对您的依赖项尝试此命令,看看哪个使用旧的 dom4j 版本

mvn dependency:tree -Dverbose -Dincludes=commons-collections

之后,将 dom4j 从依赖项标记中的该依赖项中排除。

 <exclusions>
<exclusion> <!-- declare the exclusion here -->
<groupId>sample.ProjectB</groupId>
<artifactId>Project-B</artifactId>
</exclusion>
</exclusions>

或者尝试使用具有旧版本 dom4j 依赖项的新版本依赖项

关于java - 部署到 WildFly 时出错 : "Caused by: java.lang.ClassCastException: org.dom4j.DocumentFactory cannot be cast to org.dom4j.DocumentFactory",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56526995/

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