CXF创建WebService服务
- 服务启动以后,访问接口,报 “No bean named ‘cxf’ is defined”,网上很多说是没有 import cxf.xml ,但是我的项目中是导入了的,最后查看发现,是把 cxf的Spring配置文件,写到了Spring的DispatcherServlet的init-params中去了,把配置文件放到
<context-param>
中,则一切正常
<param-name>contextConfigLocation</param-name>
<param-value>
classpath*:com/lecheng/**/spring-web.xml,
classpath*:com/lecheng/sync/cxf-ws.xml
</param-value>
</context-param>