转载请注明出处:http://www.voidcn.com/article/p-guwpjouq-ta.html 本文出自【我是干勾鱼的博客】 使用 cxf 创建 webservice ,我用的是目前的最新的版本 3.1.8 。 启动 tomcat 的时候发生了一个错误:
转载请注明出处:http://www.voidcn.com/article/p-guwpjouq-ta.html
本文出自【我是干勾鱼的博客】
使用cxf创建webservice,我用的是目前的最新的版本3.1.8。
启动tomcat的时候发生了一个错误:
org.springframework.beans.factory.parsing.BeanDefinitionParsingException: Configuration problem: Failed to import bean definitions from URL location [classpath:META-INF/cxf/cxf-extension-soap.xml]
上网查了一下,有的人说在cxf的3.0版本之后可能已经不需要这个配置文件了,需要在spring的xml配置文件里删除这个引用,也就是将:
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />
去掉。
试了一下,果然就不报错了。