在spring boot整合CXF开发是遇到的一些问题
以及整合方式
整合过程
Spring boot 整合CXF开发web service
网上资料引入cxf-spring-boot-starter-jaxws依赖即可
org.apache.cxf
cxf-spring-boot-starter-jaxws
3.1.11
我使用的spring boot 版本为v1.4.1.RELEASE
此时启动项目会报错
错误信息:org.springframework.beans.factory.BeanCreationException:Error creating bean with name 'endpoint' defined in class path resource [com/conf/WebServiceConfig.class]: Bean instantiation via factory method failed;
endpoint.publish("/topicServerService")
然后更换了依赖
org.apache.cxf
cxf-rt-transports-http
3.1.11
org.apache.cxf
cxf-rt-frontend-jaxws
3.1.11
即可成功发布服务
成功集成cxf后,发现只有webservice服务可以正常使用,其他请求url全部无法正常访问。
然后在cxf 配置文件中
WebServiceCxfCfg.java
更改此方法名:public ServletRegistrationBean dispatcherServlet()
@Bean
public ServletRegistrationBean disServlet(){
return new ServletRegistrationBean(new CXFServlet() , "/services/*");
}
即可成功访问其他url
评论中说的是public ServletRegistrationBean dispatcherServlet() 把默认映射覆盖掉了,把这个名字改掉,控制类方法就能访问了。
更改此方法明后可以正常其他请求url,webservice服务也正常。
查阅网上资料后发现 spring boot 1.4 版本对应cxf-spring-boot-starter-jaxws 3.1.X 版本
spring boot 1.5 版本对应cxf-spring-boot-starter-jaxws 3.2.X 版本
但本人spring boot 1.4引入cxf-spring-boot-starter-jaxws 依赖 3.1.11后,不能正常启动项目。
在此。我查看了依赖的关系
发现cxf-spring-boot-starter-jaxws中的cxf相关的包为2.7.4版本。
此时项目启动报错,是不能够发布服务的。
所以我更换了相关依赖,将其更改cxf的两个相关依赖。
而在引入cxf3.1.11的相关依赖后,发现项目可以正常启动。url都可以正常访问。
所以此问题,可能是cxf-spring-boot-starter-jaxws中cxf的版本过低!不兼容的问题。
具体时间关系,不做深究。