《转》利用cxf实现webservice

首先下载cxf包,目前最新的版本是apache-cxf-2.1.,下栽地址http://cxf.apache.org/download.html

 1. 首先新建一个web工程CxfService,倒入cxf所学要的包。要倒入的包如下:

commons-logging-1.1.jar
geronimo-activation_1.1_spec-1.0-M1.jar (or Sun's Activation jar)
geronimo-annotation_1.0_spec-1.1.jar (JSR 250)
geronimo-javamail_1.4_spec-1.0-M1.jar (or Sun's JavaMail jar)
geronimo-servlet_2.5_spec-1.1-M1.jar (or Sun's Servlet jar)
geronimo-ws-metadata_2.0_spec-1.1.1.jar (JSR 181)
jaxb-api-2.1.jar
jaxb-impl-2.1.6.jar
jaxws-api-2.1.jar
jetty-6.1.5.jar
jetty-util-6.1.5.jar
neethi-2.0.jar
saaj-api-1.3.jar
saaj-impl-1.3.jar
stax-api-1.0.1.jar
wsdl4j-1.6.1.jar
wstx-asl-3.2.1.jar
XmlSchema-1.2.jar
xml-resolver-1.2.jar

The Spring jars (optional - for XML Configuration support):

aopalliance-1.0.jar
spring-core-2.0.4.jar
spring-beans-2.0.4.jar
spring-context-2.0.4.jar
spring-web-2.0.4.jar

And the CXF jar:

cxf-2.1.jar
2.新建一个接口类:HelloWorld,如下:
Java代码  收藏代码
  1. package com.zx.cxf.service;  
  2.   
  3. import javax.jws.WebParam;  
  4. import javax.jws.WebService;  
  5.   
  6. @WebService  
  7. public interface HelloWorld {  
  8.     String sayHi(@WebParam(name="text") String text);  
  9. }  
 创建接口的实现类:HelloWorldImpl,如下
Java代码  收藏代码
  1. package com.zx.cxf.service;  
  2.   
  3. import javax.jws.WebService;  
  4.   
  5. import com.zx.cxf.service.HelloWorld;  
  6. @WebService(endpointInterface = "com.zx.cxf.service.HelloWorld",   
  7.             serviceName = "HelloWorld")  
  8. public class HelloWorldImpl implements HelloWorld {  
  9.    
  10.     public String sayHi(String text) {  
  11.         return "Hello " + text;  
  12.     }  
  13. }  
*@WebService:申明为webservice的注解 
*endpointInterface:要暴露的接口类
 *serviceName :    服务名
在WEB-INF目录下新建beans.xml,如下:
Xml代码  收藏代码
  1. <?xml version="1.0" encoding="UTF-8"?>  
  2.   
  3. <!-- START SNIPPET: beans -->  
  4. <beans xmlns="http://www.springframework.org/schema/beans"  
  5.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  6.     xmlns:jaxws="http://cxf.apache.org/jaxws"  
  7.     xsi:schemaLocation="  
  8. http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd  
  9. http://cxf.apache.org/jaxws http://cxf.apache.org/schemas/jaxws.xsd">  
  10.   
  11.     <import resource="classpath:META-INF/cxf/cxf.xml" />  
  12.     <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml" />  
  13.     <import resource="classpath:META-INF/cxf/cxf-servlet.xml" />  
  14.   
  15.     <jaxws:endpoint   
  16.       id="helloWorld"   
  17.       implementor="com.zx.cxf.service.HelloWorldImpl"   
  18.       address="/HelloWorld" />  
  19.         
  20. </beans>  
  21. <!-- END SNIPPET: beans -->  
 注: implementor :接口类的实现类
        address:   要和注释里面神秘的服务名对应,
修改web.xml文件,如下:
Xml代码  收藏代码
  1. <?xml version="1.0" encoding="ISO-8859-1"?>  
  2.   
  3. <!DOCTYPE web-app  
  4.     PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"  
  5.     "http://java.sun.com/dtd/web-app_2_3.dtd">  
  6.   
  7. <!-- START SNIPPET: webxml -->  
  8. <web-app>  
  9.     <context-param>  
  10.         <param-name>contextConfigLocation</param-name>  
  11.         <param-value>/WEB-INF/beans.xml</param-value>  
  12.     </context-param>  
  13.   
  14.     <listener>  
  15.         <listener-class>  
  16.             org.springframework.web.context.ContextLoaderListener  
  17.         </listener-class>  
  18.     </listener>  
  19.   
  20.     <servlet>  
  21.         <servlet-name>CXFServlet</servlet-name>  
  22.         <display-name>CXF Servlet</display-name>  
  23.         <servlet-class>  
  24.             org.apache.cxf.transport.servlet.CXFServlet  
  25.         </servlet-class>  
  26.         <load-on-startup>1</load-on-startup>  
  27.     </servlet>  
  28.   
  29.     <servlet-mapping>  
  30.         <servlet-name>CXFServlet</servlet-name>  
  31.         <url-pattern>/services/*</url-pattern>  
  32.     </servlet-mapping>  
  33. </web-app>  
  34. <!-- END SNIPPET: webxml -->  
启动tomcat
测试:简单的测试就是ie测试,在浏览器中输入http://localhost:8080/CxfService/services/,如果出现

{http://service.cxf.zx.com/}HelloWorldImplPort ,或者输入http://localhost:8080/CxfService/services/HelloWorld?wsdl,出现wsdl文挡,则说明服务器端配置成功。

 可户端测试:

测试类如下:

Java代码  收藏代码
  1. package com.zx.cxf.service;  
  2.   
  3. import org.apache.cxf.jaxws.JaxWsProxyFactoryBean;  
  4. import org.apache.cxf.interceptor.*;  
  5. import com.zx.cxf.service.HelloWorld;  
  6. public  class client {  
  7.   
  8.      
  9.   
  10.     private client() {  
  11.     }   
  12.   
  13.     public static void main(String args[]) throws Exception {  
  14.         JaxWsProxyFactoryBean factory = new JaxWsProxyFactoryBean();  
  15.         factory.getInInterceptors().add(new LoggingInInterceptor());  
  16.         factory.getOutInterceptors().add(new LoggingOutInterceptor());  
  17.         factory.setServiceClass(HelloWorld.class);  
  18.         factory.setAddress("http://localhost:8080/CxfService/services/HelloWorld");  
  19.         HelloWorld client = (HelloWorld) factory.create();  
  20.   
  21.         String reply = client.sayHi("HI");  
  22.         System.out.println("Server said: " + reply);  
  23.     }  
  24.   
  25. }  

 如果控制台打印出:Server said: Hello HI则说明测试成功。

Ps:如果出现in thread "main" javax.xml.ws.soap.SOAPFaultException: Error reading XMLStreamReader.

关掉防火墙就可以了。

下面是源文件:下载后倒入所需要的包

@WebService@WebMethod 是WSDL映射Annotation.这些Annotation将描述Web Service的WSDL文档元素和JAVA源代码联系在一起。
@WebService@WebMethod WSDL映射Annotation.这些Annotation将描述Web Service的WSDL文档元素和JAVA源代码联系在一起。
@WebService annotation的元素name,serviceName和targetNamespace成员用来描述wsdl:protType,wsdl:service,和targetNameSpace生成WebService中的WSDL文件。
@SOAPBinding 是一个用来描述SOAP格式和RPC的协议的绑定Annotation.
@WebMethod Annotation的operationName成员描述了wsdl:operation,而且它的操作描述了WSDL文件中的SOAPAction头部,这是客户端必须要放入到SOAPHeader中的数值,SOAP1.1中的一种约束。
@WebParam 是一个用来描述SOAP格式和RPC的协议的绑定Annotation.
@WebResult Annotation的partName成员描述了wsdl:part用来返回WSDL文档的值。

 

 

 

 

 

 

 

 

 

 

 

 

转自:http://rargers.iteye.com/blog/196121

posted @ 2013-08-19 14:11  君子笑而不语  阅读(355)  评论(0编辑  收藏  举报