当我尝试将Java EE应用程序部署到WildFly 15.0.1.Final时,我仍然看到此错误。
我看到org.apache.directory.api :: api-all depends on org.apache.servicemix.bundles :: org.apache.servicemix.bundles.dom4j和后一个依赖项{{3} } 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>
请问您如何建议解决此问题?
答案 0 :(得分:0)
您的一个依赖项具有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的旧版本依赖性的较新版本的依赖性
答案 1 :(得分:0)
我已经通过删除这两行来解决了这个问题
<deployments>
</deployments>
在WildFly的standalone.xml中。这个版本的standalone.xml是从WildFly的先前安装中的standalone.xml创建的,通过删除除必要内容(即数据源和驱动程序部分)之外的所有内容,可以更轻松地工作。
很奇怪。