在提供 Maven 工件的 Wildfly 部署中使用 CXF 库

Use CXF libraries in Wildfly deployment with Maven artifact provided

我正在尝试将包含 JAX-WS 接口的项目部署到 Wildfly 8.2 服务器。该项目打包为 war。 在该项目中,我想使用拦截器。

import org.apache.cxf.binding.soap.interceptor.AbstractSoapInterceptor;
public class ReplyToHeaderInInterceptor extends AbstractSoapInterceptor { /*code*/}

我正在使用带有 "provided" 标签的 Maven,以免收到以下错误:

Apache CXF library (cxf-rt-bindings-soap-3.1.1.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.

看起来像这样:

    <dependency>
        <groupId>org.apache.cxf</groupId>
        <artifactId>cxf-rt-frontend-jaxws</artifactId>
        <version>3.1.1</version>
        <scope>provided</scope>
    </dependency>

但如果我这样做,则在运行时无法找到该库:

Caused by: java.lang.NoClassDefFoundError: org/apache/cxf/binding/soap/interceptor/AbstractSoapInterceptor

我已经尝试使用 Maven 通过 MANIFEST.MF 文件添加依赖项:

            <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.5</version>
            <configuration>
                <packagingExcludes>WEB-INF/web.xml</packagingExcludes>
                <warName>backend</warName>
               <archive>
                  <manifestEntries>
                     <Dependencies>org.apache.cxf</Dependencies>
                  </manifestEntries>
               </archive>
            </configuration>
        </plugin>

我不知道该怎么办,有什么建议吗?

事实证明,将具有以下内容的 jboss-deployment-structure.xml 文件添加到 WEB-INF 文件夹就成功了:

<?xml version="1.0"?>
<jboss-deployment-structure xmlns="urn:jboss:deployment-structure:1.2"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <deployment>
        <exclusions>
        </exclusions>
        <dependencies>
            <module name="org.apache.cxf" />
            <module name="org.apache.cxf.impl" />
        </dependencies>
    </deployment>
</jboss-deployment-structure>

尽管我之前只用 org.apache.cxf 尝试过,但我不得不添加 org.apache.cxf.impl

另一种选择是使用您自己的结构,而不是 Wildfly 服务器部署中提供的模块(版本)。这是通过 jboss-deployment-structure.xml 文件到 WEB-INF 的内容完成的:

  <deployment>
    <exclude-subsystems>
        <subsystem name="webservices" /> 
    </exclude-subsystems>  
  </deployment>

这将禁用 Wildfly 中包含的 Web 服务框架并使用 war 包含的库(lib jar)

相关question/answer中提到了这一点: How to access CXF jars from Wildfly (Jboss) for ws endpoints