Spring整合了CXF的一个applicationContext.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:jaxws="http://cxf.apache.org/jaxws"
       xmlns:jaxrs="http://cxf.apache.org/jaxrs"
       xmlns:cxf="http://cxf.apache.org/core"
       xsi:schemaLocation="http://www.springframework.org/schema/beans

          http://www.springframework.org/schema/beans/spring-beans.xsd
            http://cxf.apache.org/jaxrs
http://cxf.apache.org/schemas/jaxrs.xsd
            http://cxf.apache.org/jaxws
http://cxf.apache.org/schemas/jaxws.xsd
            http://cxf.apache.org/core
http://cxf.apache.org/schemas/core.xsd">
<!-- 引入CXF Bean定义如下 -->
<import resource="classpath:META-INF/cxf/cxf.xml"/>
<!--已经可以不使用此项
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/>
 -->
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/>

<jaxws:server id="a"
     address="/helloworld"
     serviceClass="cn.itcast.server.HelloWorld">
<jaxws:serviceBean>
 <bean class="cn.itcast.server.HelloWorldImpl"></bean>
</jaxws:serviceBean>

<jaxws:inInterceptors>
 <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"></bean>
</jaxws:inInterceptors>
<jaxws:outInterceptors>
 <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"></bean>
</jaxws:outInterceptors>
</jaxws:server>
</beans>

时间: 2024-09-27 10:10:22

Spring整合了CXF的一个applicationContext.xml的配置文件的相关文章

关于spring整合struts2+hibernate的一个配置文件问题

问题描述 今天用spring整合了一下一个案例,可是在做spring配置的文件的时候报错了.网上搜了很多的方法也都试了可是还是不行,贴在这里大大们帮我看一下吧.applicationContext.xml,配置文件,放在/WEB-INF下了.<?xmlversion="1.0"encoding="UTF-8"?><beansxmlns="http://www.springframework.org/schema/beans"xm

maven ssh 模块-maven ssh整合 模块开发 怎么配置applicationContext.xml

问题描述 maven ssh整合 模块开发 怎么配置applicationContext.xml 我们现在用maven 开发web项目 关于ssh框架整合时 因为是分多个模块开发 每个模块都会有一个applicationContext.xml 这么多的applicationContext.xml 中 有一个是主要的 其它的都是每个模块的具体配置 这个主要的配置文件该怎么配置 该放在哪

spring mvc-Spring mvc mybatis 核心文件applicationContext.xml读取路径的问题

问题描述 Spring mvc mybatis 核心文件applicationContext.xml读取路径的问题 我搭了一个框架,applicationcontext.xml文件不在src下也不在WEB-INF/classes下而是在WEB-INF/etc下(自己建的文件夹) 现在我的java类中想获取spring容器applicationContext 对象,核心xml文件总是说路径不对,试了好几种了,真心的求大神~~~~~ 严重: Servlet.service() for servlet

一个ApplicationContext.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:p="http://www.springframework.org/schema/p

struts2-关于spring整合struts的问题

问题描述 关于spring整合struts的问题 我applicationContext中的配置和action里面的内容如下: <bean id="productService" class="com.store.serviceImpl.ProductServiceImpl"> <property name="pdao" ref="productDao"/> </bean <bean nam

ssh框架中spring整合hibernate的配置文件模板(带详细注释)

applicationContext.xml的配置文件模板 1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans 3 xmlns="http://www.springframework.org/schema/beans" 4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 5 xmlns:aop=&quo

请高手指点,百思不得其解?关于hibernate与spring整合

问题描述 老是报空指针异常.以下是applicationContext.xml的配置文件,<beanid="dataSource"class="org.logicalcobwebs.proxool.ProxoolDataSource"><propertyname="driver"value="oracle.jdbc.driver.OracleDriver"/><propertyname="

cxf和spring整合

spring 3.0 cxf2.7.2整合 1,拷贝spring的 jar 2,拷贝cxf的jar包     jetty不需要了     asm     common-logging     neethi     wsdl4j     xmlschema     cxf     http-* 3,修改web.xml 添加对spring的支持     <context-param>         <param-name>contextConfigLocation</param

我使用cxf和spring整合发布WebService,tomcat上没有报错但是就不访问wsdl

问题描述 我使用cxf和spring整合发布WebService,tomcat上没有报错但是就不访问wsdl No cxf.xml configuration file detected, relying on defaults.在运行tomcat时报这个