基于 Spring 4.x 的 CXF Web 服务配置 - WildFly 10.1



我们想将我们的 Spring 应用程序从 JBoss 7.1.1 迁移到 WildFly 10.1。我们使用了基于 CXF 和 Spring 管理的 Web 服务,但在 WildFly 10.1 上,我们无法配置这些服务。

我们尝试了两种方法。

  1. 当我们使用 WildFly Web 服务子系统时,Web 服务会正确发布,但在 WS 实现中,我们无法访问 Spring 管理的 bean。

  2. 当我们在 jboss-deployment-structure.xml 中排除 Web 服务子系统,在 web 中配置 CXFServlet.xml并在 spring xml 配置文件中配置 jaxws:endpoint,日志显示服务创建没问题,但不是基于实际实现。服务名称、命名空间和地址错误。

使用的弹簧配置:

<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns:cxf="http://cxf.apache.org/core"
xmlns:jaxws="http://cxf.apache.org/jaxws" 
xmlns:jaxrs="http://cxf.apache.org/jaxrs"
xmlns:http-conf="http://cxf.apache.org/transports/http/configuration"
xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.3.xsd
http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.3.xsd
http://cxf.apache.org/core http://cxf.apache.org/schemas/core.xsd 
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd 
http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd
http://cxf.apache.org/transports/http/configuration http://cxf.apache.org/schemas/configuration/http-conf.xsd">
<import resource="classpath:META-INF/cxf/cxf.xml" />
<import resource="classpath:META-INF/cxf/cxf-extension-jaxws.xml" />
<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
<jaxws:endpoint id="testWs" implementor="ns.test.ws.impl.TestWsImpl"
address="/test">
<jaxws:properties>
<entry key="schema-validation-enabled" value="true" />
</jaxws:properties>
</jaxws:endpoint>
</beans>

日志内容:

18:

31:11,783 信息 [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (服务器服务线程池 -- 58)从中装入 XML Bean 定义 类路径资源 [元信息/cxf-be.xml]
18:31:12,177 信息 [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (服务器服务线程池 -- 58)从中装入 XML Bean 定义 类路径资源 [元信息/cxf/cxf.xml]
18:31:12,290 信息 [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (服务器服务线程池 -- 58)从中装入 XML Bean 定义 类路径资源 [META-INF/cxf/cxf-extension-jaxws.xml]
18:31:12,455 信息 [org.springframework.beans.factory.xml.XmlBeanDefinitionReader] (服务器服务线程池 -- 58)从中装入 XML Bean 定义 类路径资源 [META-INF/cxf/cxf-servlet.xml]
18:31:12,960 信息 [org.apache.cxf.wsdl.service.factory.ReflectionServiceFactoryBean] (服务器服务线程池 -- 58)创建服务 {http://impl.ws.test.ns/}测试WsImpl服务从类 ns.test.ws.impl.TestWsImpl

WS 实现:

package ns.test.ws.impl;
import java.util.ArrayList;
import javax.jws.WebService;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.transaction.annotation.Transactional;
import ns.test.ws.api.TestWs;
import ns.test.ws.domain.ApplicationInfo;
import ns.test.ws.domain.ApplicationInfoRequest;
import ns.test.ws.domain.ApplicationInfoResultContainer;
import ns.test.ws.domain.CallContext;
import ns.test.ws.domain.ResultContext;
import ns.test.ws.domain.ResultMessage;
@WebService(name = "ApplicationInfoService", serviceName = "ApplicationInfoService", portName = "ApplicationInfoServicePort", endpointInterface = "ns.test.ws.api.TestWs", targetNamespace = "http://test.ns/")
@Transactional
public class TestWsImpl implements TestWs {
@SuppressWarnings("unused")
private static final org.slf4j.Logger logger = LoggerFactory.getLogger(TestWsImpl.class);
@Autowired
private VersionInfo versionInfo;
public ApplicationInfoResultContainer test(CallContext callContext, ApplicationInfoRequest appInfoRequest) {
ApplicationInfo result = new ApplicationInfo();
result.setAppName(versionInfo.getAppName());
result.setAppVersion(versionInfo.getVersion());
ResultContext resultContext = new ResultContext();
resultContext.setCorrelationId("corrId");
resultContext.setHighestMessageSeverity("W");
resultContext.setMessageList(new ArrayList<ResultMessage>());
resultContext.getMessageList().add(new ResultMessage("code", "sev", "system", "message"));
return new ApplicationInfoResultContainer(result, resultContext);
}
}

我们错了什么?我们应该如何配置弹簧应用程序?

使用的依赖项:

野蝇 10.1
CXF 3.1.6 (野蝇 10.1 模块)
春季 4.3.7

我找到了解决方案。请参阅以下存储库中的示例代码。

https://github.com/SeniorRoland/spring-wildfly

相关内容

  • 没有找到相关文章

最新更新