javascript
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"/>
<!--已經(jīng)可以不使用此項(xiàng)
<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>
總結(jié)
以上是生活随笔為你收集整理的Spring整合了CXF的一个applicationContext.xml的配置文件的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: MyEclipse中快捷键的使用
- 下一篇: CXF WebService整合Spri