--转载
首先,CXF和spring整合需要准备如下jar包文件:
这边我是用Spring的jar包是Spring官方提供的,并没有使用CXF中的Spring的jar文件。
添加这么多文件后,首先在web.xml中添加如下配置:
<!-- 加载Spring容器配置 -->
<!--CRLF-->
<listener><!--CRLF-->
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class><!--CRLF-->
</listener><!--CRLF-->
<!-- 设置Spring容器加载配置文件路径 -->
<!--CRLF-->
<context-param><!--CRLF-->
<param-name>contextConfigLocation</param-name><!--CRLF-->
<param-value>classpath*:applicationContext-server.xml</param-value><!--CRLF-->
</context-param><!--CRLF-->
<!--CRLF-->
<listener><!--CRLF-->
<listener-class>org.springframework.web.util.IntrospectorCleanupListener</listener-class><!--CRLF-->
</listener><!--CRLF-->
<!--CRLF-->
<servlet><!--CRLF-->
<servlet-name>CXFService</servlet-name><!--CRLF-->
<servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class><!--CRLF-->
</servlet><!--CRLF-->
<!--CRLF-->
<servlet-mapping><!--CRLF-->
<servlet-name>CXFService</servlet-name><!--CRLF-->
<url-pattern>/*</url-pattern><!--CRLF-->
</servlet-mapping><!--CRLF-->
然后在src目录中,新建一个applicationContext-server.xml文件,文件内容如下:
<?xml version="1.0" encoding="UTF-8"?><!--CRLF-->
<beans xmlns="http://www.springframework.org/schema/beans"<!--CRLF-->
xmlns:context="http://www.springframework.org/schema/context"<!--CRLF-->
xmlns:jaxws="http://cxf.apache.org/jaxws"
<!--CRLF-->
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"<!--CRLF-->
xsi:schemaLocation="http://www.springframework.org/schema/beans ><!--CRLF-->
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd<!--CRLF-->
http://www.springframework.org/schema/context<!--CRLF-->
http://www.springframework.org/schema/context/spring-context-3.0.xsd<!--CRLF-->
http://cxf.apache.org/jaxws
<!--CRLF-->
http://cxf.apache.org/schemas/jaxws.xsd"
<!--CRLF-->
注意上面的带下划线加粗部分,这个很重要的哦!不能写错或是遗漏了。
添加完这个文件后,还需要在这个文件中导入这么几个文件。文件内容如下:
<import resource="classpath:META-INF/cxf/cxf.xml"/><!--CRLF-->
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/><!--CRLF-->
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/><!--CRLF-->
下面开始写服务器端代码,首先定制服务器端的接口,代码如下:
package com.hoo.service;
<!--CRLF-->
<!--CRLF-->
import javax.jws.WebParam;
<!--CRLF-->
import javax.jws.WebService;
<!--CRLF-->
import javax.jws.soap.SOAPBinding;
<!--CRLF-->
import javax.jws.soap.SOAPBinding.Style;
<!--CRLF-->
import com.hoo.entity.User;
<!--CRLF-->
import com.hoo.entity.Users;
<!--CRLF-->
<!--CRLF-->
/**
<!--CRLF-->
* <b>function:</b>定制客户端请求WebService所需要的接口
<!--CRLF-->
* @author hoojo
<!--CRLF-->
* @createDate 2011-3-18 上午08:22:55
<!--CRLF-->
* @file ComplexUserService.java
<!--CRLF-->
* @package com.hoo.service
<!--CRLF-->
* @project CXFWebService
<!--CRLF-->
* @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
* @email hoojo_@126.com
<!--CRLF-->
* @version 1.0
<!--CRLF-->
*/
<!--CRLF-->
@WebService<!--CRLF-->
@SOAPBinding(style = Style.RPC)<!--CRLF-->
public interface IComplexUserService {<!--CRLF-->
<!--CRLF-->
public User getUserByName(@WebParam(name = "name") String name);<!--CRLF-->
<!--CRLF-->
public void setUser(User user);<!--CRLF-->
}<!--CRLF-->
下面编写WebService的实现类,服务器端实现代码如下:
package com.hoo.service;
<!--CRLF-->
<!--CRLF-->
import java.util.ArrayList;
<!--CRLF-->
import java.util.Date;
<!--CRLF-->
import java.util.HashMap;
<!--CRLF-->
import java.util.List;
<!--CRLF-->
import javax.jws.WebParam;
<!--CRLF-->
import javax.jws.WebService;
<!--CRLF-->
import javax.jws.soap.SOAPBinding;
<!--CRLF-->
import javax.jws.soap.SOAPBinding.Style;
<!--CRLF-->
import com.hoo.entity.User;
<!--CRLF-->
import com.hoo.entity.Users;
<!--CRLF-->
<!--CRLF-->
/**
<!--CRLF-->
* <b>function:</b> WebService传递复杂对象,如JavaBean、Array、List、Map等
<!--CRLF-->
* @author hoojo
<!--CRLF-->
* @createDate 2011-3-18 上午08:22:55
<!--CRLF-->
* @file ComplexUserService.java
<!--CRLF-->
* @package com.hoo.service
<!--CRLF-->
* @project CXFWebService
<!--CRLF-->
* @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
* @email hoojo_@126.com
<!--CRLF-->
* @version 1.0
<!--CRLF-->
*/
<!--CRLF-->
@WebService<!--CRLF-->
@SOAPBinding(style = Style.RPC)<!--CRLF-->
@SuppressWarnings("deprecation")
<!--CRLF-->
public class ComplexUserService implements IComplexUserService {<!--CRLF-->
<!--CRLF-->
public User getUserByName(@WebParam(name = "name") String name) {<!--CRLF-->
User user = new User();
<!--CRLF-->
user.setId(new Date().getSeconds());
<!--CRLF-->
user.setName(name);<!--CRLF-->
user.setAddress("china");
<!--CRLF-->
user.setEmail(name + "@hoo.com");
<!--CRLF-->
return user;
<!--CRLF-->
}<!--CRLF-->
<!--CRLF-->
public void setUser(User user) {<!--CRLF-->
System.out.println("############Server setUser###########");
<!--CRLF-->
System.out.println("setUser:" + user);
<!--CRLF-->
}<!--CRLF-->
}<!--CRLF-->
注意的是和Spring集成,这里一定要完成接口实现,如果没有接口的话会有错误的。
下面要在applicationContext-server.xml文件中添加如下配置:
<bean id="userServiceBean" class="com.hoo.service.ComplexUserService"/><!--CRLF-->
<!--CRLF-->
<bean id="inMessageInterceptor" class="com.hoo.interceptor.MessageInterceptor"><!--CRLF-->
<constructor-arg value="receive"/><!--CRLF-->
</bean><!--CRLF-->
<!--CRLF-->
<bean id="outLoggingInterceptor" class="org.apache.cxf.interceptor.LoggingOutInterceptor"/><!--CRLF-->
<!-- 注意下面的address,这里的address的名称就是访问的WebService的name -->
<!--CRLF-->
<jaxws:server id="userService" serviceClass="com.hoo.service.IComplexUserService" address="/Users"><!--CRLF-->
<jaxws:serviceBean><!--CRLF-->
<!-- 要暴露的 bean 的引用 -->
<!--CRLF-->
<ref bean="userServiceBean"/><!--CRLF-->
</jaxws:serviceBean><!--CRLF-->
<jaxws:inInterceptors><!--CRLF-->
<ref bean="inMessageInterceptor"/><!--CRLF-->
</jaxws:inInterceptors><!--CRLF-->
<jaxws:outInterceptors><!--CRLF-->
<ref bean="outLoggingInterceptor"/><!--CRLF-->
</jaxws:outInterceptors><!--CRLF-->
</jaxws:server><!--CRLF-->
下面启动tomcat服务器后,在WebBrowser中请求:
http://localhost:8080/CXFWebService/Users?wsdl
如果你能看到wsdl的xml文件的内容,就说明你成功了,注意的是上面地址的Users就是上面xml配置中的address的名称,是一一对应的。
下面编写客户端请求的代码,代码如下:
package com.hoo.client;
<!--CRLF-->
<!--CRLF-->
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
<!--CRLF-->
import com.hoo.entity.User;
<!--CRLF-->
import com.hoo.service.IComplexUserService;
<!--CRLF-->
<!--CRLF-->
/**
<!--CRLF-->
* <b>function:</b>请求Spring整合CXF的WebService客户端
<!--CRLF-->
* @author hoojo
<!--CRLF-->
* @createDate 2011-3-28 下午03:20:35
<!--CRLF-->
* @file SpringUsersWsClient.java
<!--CRLF-->
* @package com.hoo.client
<!--CRLF-->
* @project CXFWebService
<!--CRLF-->
* @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
* @email hoojo_@126.com
<!--CRLF-->
* @version 1.0
<!--CRLF-->
*/
<!--CRLF-->
public class SpringUsersWsClient {<!--CRLF-->
<!--CRLF-->
public static void main(String[] args) {<!--CRLF-->
//调用WebService
<!--CRLF-->
JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();
<!--CRLF-->
factory.setServiceClass(IComplexUserService.class);
<!--CRLF-->
factory.setAddress("http://localhost:8080/CXFWebService/Users");
<!--CRLF-->
<!--CRLF-->
IComplexUserService service = (IComplexUserService) factory.create();<!--CRLF-->
<!--CRLF-->
System.out.println("#############Client getUserByName##############");
<!--CRLF-->
User user = service.getUserByName("hoojo");
<!--CRLF-->
System.out.println(user);<!--CRLF-->
<!--CRLF-->
user.setAddress("China-Guangzhou");
<!--CRLF-->
service.setUser(user);<!--CRLF-->
}<!--CRLF-->
}<!--CRLF-->
运行后,可以在控制台中看到
log4j:WARN No appenders could be found for logger (org.apache.cxf.bus.spring.BusApplicationContext). log4j:WARN Please initialize the log4j system properly. log4j:WARN See http://logging.apache.org/log4j/1.2/faq.html#noconfig for more info. 2011-3-28 18:12:26 org.apache.cxf.service.factory.ReflectionServiceFactoryBean buildServiceFromClass 信息: Creating Service {http://service.hoo.com/}IComplexUserServiceService from class com.hoo.service.IComplexUserService #############Client getUserByName############## 27#hoojo#hoojo@hoo.com#china Tomcat控制台
这个server端是通过Spring整合配置的,下面我们将Client端也通过Spring配置完成整合。
首先增加applicationContext-client.xml配置文件,文件内容如下:
<?xml version="1.0" encoding="UTF-8"?><!--CRLF-->
<beans xmlns="http://www.springframework.org/schema/beans"<!--CRLF-->
xmlns:context="http://www.springframework.org/schema/context"<!--CRLF-->
xmlns:jaxws="http://cxf.apache.org/jaxws"<!--CRLF-->
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"<!--CRLF-->
xsi:schemaLocation="http://www.springframework.org/schema/beans ><!--CRLF-->
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd<!--CRLF-->
http://www.springframework.org/schema/context<!--CRLF-->
http://www.springframework.org/schema/context/spring-context-3.0.xsd<!--CRLF-->
http://cxf.apache.org/jaxws<!--CRLF-->
http://cxf.apache.org/schemas/jaxws.xsd"<!--CRLF-->
<!--CRLF-->
<import resource="classpath:META-INF/cxf/cxf.xml"/><!--CRLF-->
<import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/><!--CRLF-->
<import resource="classpath:META-INF/cxf/cxf-servlet.xml"/><!--CRLF-->
<!--CRLF-->
<jaxws:client id="userWsClient" serviceClass="com.hoo.service.IComplexUserService"<!--CRLF-->
address="http://localhost:8080/CXFWebService/Users"/><!--CRLF-->
</beans><!--CRLF-->
客户端请求代码如下:
package com.hoo.client;
<!--CRLF-->
<!--CRLF-->
import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;
<!--CRLF-->
import org.springframework.context.ApplicationContext;
<!--CRLF-->
import org.springframework.context.support.ClassPathXmlApplicationContext;
<!--CRLF-->
import com.hoo.entity.User;
<!--CRLF-->
import com.hoo.service.IComplexUserService;
<!--CRLF-->
<!--CRLF-->
/**
<!--CRLF-->
* <b>function:</b>请求Spring整合CXF的WebService客户端
<!--CRLF-->
* @author hoojo
<!--CRLF-->
* @createDate 2011-3-28 下午03:20:35
<!--CRLF-->
* @file SpringUsersWsClient.java
<!--CRLF-->
* @package com.hoo.client
<!--CRLF-->
* @project CXFWebService
<!--CRLF-->
* @blog http://blog.csdn.net/IBM_hoojo
<!--CRLF-->
* @email hoojo_@126.com
<!--CRLF-->
* @version 1.0
<!--CRLF-->
*/
<!--CRLF-->
public class SpringUsersWsClient {<!--CRLF-->
<!--CRLF-->
public static void main(String[] args) {<!--CRLF-->
ApplicationContext ctx = new ClassPathXmlApplicationContext("applicationContext-client.xml");<!--CRLF-->
<!--CRLF-->
IComplexUserService service = ctx.getBean("userWsClient", IComplexUserService.class);<!--CRLF-->
<!--CRLF-->
System.out.println("#############Client getUserByName##############");
<!--CRLF-->
User user = service.getUserByName("hoojo");
<!--CRLF-->
System.out.println(user);<!--CRLF-->
<!--CRLF-->
user.setAddress("China-Guangzhou");
<!--CRLF-->
service.setUser(user);<!--CRLF-->
}<!--CRLF-->
}<!--CRLF-->
运行后结果如下:
#############Client getUserByName############## 45#hoojo#hoojo@hoo.com#china ############Server setUser########### setUser:45#hoojo#hoojo@hoo.com#China-Guangzhou