使用 CXF + Spring 发布WebService

使用 CXF + Spring 发布WebService

说明:

CXF + Spring 发布WebService,和Jax-Ws发布WebServices一样的

就是多了加入CXF jar 包,和加入 Spring 的配置文件. 不用手动使用终端发布了,

Web容器已启动,就自动发布了! 加入CXF还有一个好处.

可以使拦截器,可以支持返回:  java.lang.Map  数据类型

 

拦截器:

LoggingOutInterceptor 日志出拦截器
LoggingInInterceptor 日志入拦截器
AbstractPhaseInterceptor<SoapMessage> 自定义拦截器,继承该类

 

 

配置文件:

<?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"
	xmlns:jaxws="http://cxf.apache.org/jaxws" xmlns:jaxrs="http://cxf.apache.org/jaxrs"
	xsi:schemaLocation="
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd 
 http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">
	<!-- 引cxf的一些核心配置 -->
	<import resource="classpath:META-INF/cxf/cxf.xml" />
	<import resource="classpath:META-INF/cxf/cxf-servlet.xml" />
	<!-- 配置web service 实现类 -->
	<bean id="uu" class="com.cxf.publish.ws.UseriImpl" />
	<bean id="personService" class="com.cxf.publish.ws.PersonService" />
	<!-- 发布web service 两种配置方式 -->
	<!-- 1 -->
	<jaxws:server serviceName="userService" id="rest_userInfoService" address="/ws_user">
		<jaxws:serviceBean>
			<ref bean="personService" />
		</jaxws:serviceBean>
		<jaxws:inInterceptors>
			<bean class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
			<bean class="org.apache.cxf.interceptor.LoggingInInterceptor" />
		</jaxws:inInterceptors>
	</jaxws:server>
	<!-- 2 -->
	<jaxws:endpoint implementorClass="com.cxf.publish.ws.PersonService" address="/service">
		<jaxws:inInterceptors>
			<bean class="org.apache.cxf.interceptor.LoggingOutInterceptor" />
			<bean class="org.apache.cxf.interceptor.LoggingInInterceptor" />
		</jaxws:inInterceptors>
	</jaxws:endpoint>
</beans>

 web.xml 配置

<?xml version="1.0" encoding="UTF-8"?>  
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">  
<!--   配置CXF SERVLET -->  
  <servlet>  
    <servlet-name>CXFServlet</servlet-name>  
    <servlet-class>  
         org.apache.cxf.transport.servlet.CXFServlet  
      </servlet-class>  
    <load-on-startup>1</load-on-startup>  
  </servlet>  
  <servlet-mapping>  
    <servlet-name>CXFServlet</servlet-name>  
    <url-pattern>/service/*</url-pattern>  
  </servlet-mapping>  
<!--   配置spring ContextLoaderListener -->  
  <listener>  
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>  
  </listener>  
  <context-param>  
    <param-name>contextConfigLocation</param-name>  
    <param-value>classpath:applicationContext.xml</param-value>  
  </context-param>  
</web-app>

 

你可能感兴趣的:(使用 CXF + Spring 发布WebService)