spring集成webservice框架cxf,访问报错service not found

来源:互联网 发布:java io读取文件 编辑:程序博客网 时间:2024/06/05 04:15

这是因为我把cxf的配置文件spring-mvc的配置文件写在同一个xml里,Spring MVC是通过DispatcherServlet来加载Spring配置文件的,因此不需要在web.xml中配置ContextLoaderListener。但是CXF却需要通过ContextLoaderListener来加载Spring。这样就产生了一个矛盾,如果不配置ContextLoaderListener,CXF就无法正常使用。但如果配置ContextLoaderListener,又会造成Spring的重复加载(DispatcherServlet一次,ContextLoaderListener一次) ,后来就分开配置两个spring-mvc.xml和spring-cxf.xml



spring-cxf.xml配置文件:

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"       xmlns:context="http://www.springframework.org/schema/context" xmlns:jaxws="http://cxf.apache.org/jaxws"       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context.xsd http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">    <import resource="classpath:META-INF/cxf/cxf.xml"/>    <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>    <!-- 自动扫描webService -->    <context:component-scan base-package="com.yingjun.ssm.cxf"/>    <!-- 定义webService的发布接口 -->    <jaxws:endpoint implementor="#helloWorld" address="/helloWorld"/></beans>


spring-mvc.xml配置文件

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"       xmlns:context="http://www.springframework.org/schema/context"       xmlns:mvc="http://www.springframework.org/schema/mvc"       xmlns:aop="http://www.springframework.org/schema/aop"       xsi:schemaLocation="http://www.springframework.org/schema/beans      http://www.springframework.org/schema/beans/spring-beans.xsd      http://www.springframework.org/schema/context      http://www.springframework.org/schema/context/spring-context.xsd      http://www.springframework.org/schema/mvc      http://www.springframework.org/schema/mvc/spring-mvc.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">    <!-- 激活组件扫描功能,扫描aop的相关组件组件 -->    <context:component-scan base-package="com.yingjun.ssm.aop"/>    <!-- 启动对@AspectJ注解的支持 -->    <aop:aspectj-autoproxy proxy-target-class="true" />    <!--简化配置:       1、自动注册DefaultAnnotationHandlerMapping,AnnotationMethodHandlerAdapter       2、提供一系列:数据绑定,数字和日期的format,@NumberFormat,@DataTimeFormat,xml,json默认读写支持    -->    <mvc:annotation-driven/>    <!--静态资源默认servlet配置       1、加入对静态资源的处理:js,css,gif,png       2、允许使用"/"做整体映射    -->    <mvc:default-servlet-handler/>    <!--配置JSP 显示ViewResolver-->    <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">        <property name="viewClass" value="org.springframework.web.servlet.view.JstlView"/>        <property name="prefix" value="/WEB-INF/jsp/"/>        <property name="suffix" value=".jsp"/>    </bean>    <!--扫描web相关的controller-->    <context:component-scan base-package="com.yingjun.ssm.web"/>    <!--全局异常捕捉 -->    <bean class="com.yingjun.ssm.exception.GlobalExceptionResolver" /></beans>

由于系统中还有其他的上下文bean,就把spring-cxf.xml导入到application-context.xml中

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd">...      <import resource="spring-cxf.xml"/></beans>

web.xml修改好的配置如下:

<context-param>   <param-name>contextConfigLocation</param-name>   <param-value>classpath:spring/application-context.xml</param-value></context-param><listener>   <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class></listener><!--配置DispatcherServlet --><servlet>   <servlet-name>spring-dispatcher</servlet-name>   <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>   <!-- 配置SpringMVC需要加载的配置文件 spring-xxx.xml -->   <init-param>      <param-name>contextConfigLocation</param-name>      <param-value>classpath:spring/spring-mvc.xml</param-value>   </init-param>   <load-on-startup>1</load-on-startup></servlet><servlet-mapping>   <servlet-name>spring-dispatcher</servlet-name>   <!--默认匹配所有的请求 -->   <url-pattern>/</url-pattern></servlet-mapping>


原创粉丝点击