【发布时间】:2018-10-26 07:14:51
【问题描述】:
我正在使用带有 Java 8 的 Wildfly 10。WEB-INF/jboss-deployment-structure.xml 在下面,我还尝试将 jboss-deployment-structure.xml 放在 META-INF 下。 我想将 JBoss AS 用作没有 WS 功能的 servlet 容器,所以我尝试关闭 webservices 子系统。
<?xml version="1.0" encoding="UTF-8"?>
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<sub-deployment name="my.war">
<exclude-subsystems>
<subsystem name="webservices" />
</exclude-subsystems>
</sub-deployment>
</jboss-deployment-structure>
但我仍然收到以下错误。我认为 xml 没有加载。
Caused by: org.jboss.as.server.deployment.DeploymentUnitProcessingException: WFLYWS0059: Apache CXF library (cxf-2.6.2.jar) detected in ws endpoint deployment; either provide a proper deployment replacing embedded libraries with container module dependencies or disable the webservices subsystem for the current deployment adding a proper jboss-deployment-structure.xml descriptor to it. The former approach is recommended, as the latter approach causes most of the webservices Java EE and any JBossWS specific functionality to be disabled.
【问题讨论】: