Cxf + Spring3.0 入門開發WebService

        因爲公司業務需求, 須要使用WebService技術對外提供服務,之前沒有作過相似的項目,在網上搜尋了不少資料,最終決定使用Cxf + Spring的框架,緣由很簡單,就是由於Cxf功能強大而且能夠和Spring無縫集成。java

        Apache CXF 是一個開放源代碼框架,提供了用於方便地構建和開發 Web 服務的可靠基礎架構。它容許建立高性能和可擴展的服務,您能夠將這樣的服務部署在 Tomcat 和基於 Spring 的輕量級容器中,以及部署在更高級的服務器上,例如 Jboss、IBM® WebSphere® 或 BEA WebLogic。web

        首先說明一下項目中使用的jar包以下圖,服務器端項目項目名稱 CxfSpringServer, 客戶端項目名稱爲 CxfSpringClient 兩個項目使用的都是如下的jar包, 程序中沒有使用最新的cxf-2.4.1版本由於, 該版本不知道是否有問題, 啓動的時候老是報錯。Spring使用的是3.0。spring

第一部分開發服務器端: sql

 1: 開發接口程序,接口中定義了serviceName的名稱,以及命名空間,注意這個命名空間就是未來客戶端中生成的接口的package的路徑。apache

         另外@WebResult(name="out") 這句話定義了wadl文件中輸出數據的名字,cxf中默認的輸出名稱是tomcat

return,當時要改這個名字也花了很多時間。須要改動這個名稱的朋友請注意這個細節。服務器

  
  
  
  
  1. package com.cxf.bo; 
  2. import javax.jws.WebParam; 
  3. import javax.jws.WebResult; 
  4. import javax.jws.WebService; 
  5. @WebService(serviceName="IWsTestBO",targetNamespace="http://impl.ws.com"
  6. public interface IWsTestBO { 
  7.     @WebResult(name="out"
  8.     public String execute(@WebParam(name = "arg0",targetNamespace="http://impl.ws.com")String arg0); 

   2:  接下來開發IWsTestBO 接口的實現類。架構

 @Service("wsServiceBO")  採用的是spring3.0的註解開發。app

  
  
  
  
  1. package com.cxf.bo.impl; 
  2. import javax.jws.WebService; 
  3. import org.springframework.stereotype.Service; 
  4. import com.cxf.bo.IWsTestBO; 
  5. @Service("wsServiceBO"
  6. @WebService(targetNamespace="http://impl.ws.com"
  7. public class WsTestBOImpl implements IWsTestBO{ 
  8.     public String execute(String arg0) { 
  9.         return "歡迎 " + arg0 + ",調用WebService服務...."
  10.     } 

3: Spring的配置文件 bo-context.xml。配置文件中定義了WebService的相關屬性,注意配置文件中的命名空間的定義是必不可少的。jaxws:endpointbiaoq標籤訂義了提供Web服務的 Bean 訪問地址。 而且配置了服務器接受數據的日誌配置,當服務器接受到訪問數據時jaxws:features標籤配置能夠將最原始的日誌打印到控制檯上。框架

  
  
  
  
  1. <?xml version="1.0" encoding="UTF-8"?> 
  2. <beans xmlns="http://www.springframework.org/schema/beans" 
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  4. xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  5. xmlns:context="http://www.springframework.org/schema/context" 
  6. xmlns:jaxws="http://cxf.apache.org/jaxws" 
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans 
  8.                     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
  9.                     http://www.springframework.org/schema/context 
  10.                     http://www.springframework.org/schema/context/spring-context-3.0.xsd 
  11.                     http://cxf.apache.org/jaxws  
  12.                     http://cxf.apache.org/schemas/jaxws.xsd">  
  13.  
  14.     <context:component-scan base-package="com.cxf.bo"/> 
  15.      
  16.     <import resource="classpath:META-INF/cxf/cxf.xml"/> 
  17.     <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/> 
  18.     <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/> 
  19.  
  20.     <jaxws:endpoint id="wsServiceBean" implementor="#wsServiceBO" address="/execute" publish="true" > 
  21.         <jaxws:features>  
  22.             <bean class="org.apache.cxf.feature.LoggingFeature" />  
  23.         </jaxws:features>  
  24.     </jaxws:endpoint>  
  25. </beans> 

 4:接下來是web.xml文件的配置:

  
  
  
  
  1. <?xml version="1.0" encoding="UTF-8"?> 
  2. <web-app version="2.5"  
  3.     xmlns="http://java.sun.com/xml/ns/javaee"  
  4.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  5.     xsi:schemaLocation="http://java.sun.com/xml/ns/javaee  
  6.     http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"> 
  7.     <context-param> 
  8.         <param-name>contextConfigLocation</param-name> 
  9.         <param-value>/WEB-INF/bo-context.xml</param-value> 
  10.      </context-param> 
  11.      <listener> 
  12.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 
  13.      </listener> 
  14.       <servlet>  
  15.           <servlet-name>CXFServlet</servlet-name>  
  16.           <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class>  
  17.           <load-on-startup>0</load-on-startup>  
  18.       </servlet>  
  19.       <servlet-mapping> 
  20.         <servlet-name>CXFServlet</servlet-name> 
  21.         <url-pattern>/services/*</url-pattern> 
  22.       </servlet-mapping> 
  23. </web-app> 

5: 到如今爲止服務器端的程序已經開發完成,是否是很簡單。如今能夠部署到Tomcat6.0服務器。在部署服務器的時候還有一個須要注意的問題。部署tomcat沒有問題,可是部署到resin服務器的時候就會報異常: property "javax.xml.stream.supportDTD" not supported 。上網查詢了一些資料,發現的確是resin服務器有問題, 改進方案是, 首先在resin.conf配置中找到以下代碼:

  
  
  
  
  1. <!-- Uncomment to use Resin's XML implementations 
  2.  - <system-property javax.xml.parsers.DocumentBuilderFactory 
  3.      -                 ="com.caucho.xml.parsers.XmlDocumentBuilderFactory"/> 
  4.  - <system-property javax.xml.parsers.SAXParserFactory 
  5.      -                 ="com.caucho.xml.parsers.XmlSAXParserFactory"/> 
  6. --> 

     若是已經使用,就替換下面,若是沒有使用,就加上下面的配置 

  
  
  
  
  1. <system-property javax.xml.stream.XMLInputFactory="com.sun.xml.internal.stream.XMLInputFactoryImpl" />  

     部署以後訪問以下地址  http://localhost:9113/CxfSpringServer/services/execute?wsdl  我電腦用的是9113的端口,你的確定和個人是不同的,因此你訪問的時候改一下端口就能夠了。地址訪問成功時候會出現一個xml的配置文件的信息,這裏就不展現了。

第二部分開發客戶端:

1: 客戶端和服務器端是兩個獨立的應用,jar包用的是同一組。若是你用myeclipse的話能夠經過myeclipse自帶的webservice客戶端生成嚮導生成客戶端接口。根據地址生成客戶端這樣比較方便,可是生成的文件中除了接口類以外,其它都沒什麼用的,能夠刪掉。

 2: 客戶端接口類以下

  
  
  
  
  1. package com.ws.impl; 
  2. import javax.jws.WebMethod; 
  3. import javax.jws.WebParam; 
  4. import javax.jws.WebResult; 
  5. import javax.jws.WebService; 
  6. import javax.xml.ws.RequestWrapper; 
  7. import javax.xml.ws.ResponseWrapper; 
  8. @WebService(name = "IWsTestBO", targetNamespace = "http://impl.ws.com"
  9. public interface IWsTestBO { 
  10.     @WebMethod 
  11.     @WebResult(name = "out", targetNamespace = ""
  12.     @RequestWrapper(localName = "execute", targetNamespace = "http://impl.ws.com", className = "com.ws.impl.Execute"
  13.     @ResponseWrapper(localName = "executeResponse", targetNamespace = "http://impl.ws.com", className = "com.ws.impl.ExecuteResponse"
  14.     public String execute(@WebParam(name = "arg0", targetNamespace = "http://impl.ws.com") String arg0); 

3: 客戶端的Spring配置文件以下: 

  
  
  
  
  1. <?xml version="1.0" encoding="UTF-8"?> 
  2. <beans xmlns="http://www.springframework.org/schema/beans" 
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
  4. xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
  5. xmlns:context="http://www.springframework.org/schema/context" 
  6. xmlns:jaxws="http://cxf.apache.org/jaxws" 
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans 
  8.                     http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
  9.                     http://www.springframework.org/schema/context 
  10.                     http://www.springframework.org/schema/context/spring-context-3.0.xsd 
  11.                     http://cxf.apache.org/jaxws  
  12.                     http://cxf.apache.org/schemas/jaxws.xsd">  
  13.      
  14.     <import resource="classpath:META-INF/cxf/cxf.xml"/> 
  15.     <import resource="classpath:META-INF/cxf/cxf-extension-soap.xml"/> 
  16.     <import resource="classpath:META-INF/cxf/cxf-servlet.xml"/> 
  17.      
  18.     <bean id="wsClient" class="com.ws.impl.IWsTestBO" factory-bean="clientFactory" factory-method="create"/> 
  19.     <bean id="clientFactory" class="org.apache.cxf.jaxws.JaxWsProxyFactoryBean"> 
  20.         <property name="serviceClass" value="com.ws.impl.IWsTestBO"/> 
  21.         <property name="address" value="http://localhost:9113/CxfSpringServer/services/execute?wsdl"/> 
  22.     </bean> 
  23. </beans> 

 4:  客戶端主函數測試類以下: 

  
  
  
  
  1. package com.test; 
  2. import org.springframework.context.ApplicationContext; 
  3. import org.springframework.context.support.ClassPathXmlApplicationContext; 
  4. import com.ws.impl.IWsTestBO; 
  5.  
  6. public class WsTestClient { 
  7.     public static void main(String[] args) { 
  8.         ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[]{"bo-context.xml"}); 
  9.         IWsTestBO client = (IWsTestBO)ctx.getBean("wsClient"); 
  10.         String result = client.execute("張健"); 
  11.         System.out.println(result); 
  12.     } 

5:服務器端輸入輸出日誌以下: 

  
  
  
  
  1. 信息: Inbound Message 
  2. ---------------------------- 
  3. ID: 1 
  4. Address: /CxfSpringServer/services/execute 
  5. Encoding: UTF-8 
  6. Content-Type: text/xml; charset=UTF-8 
  7. Headers: {cache-control=[no-cache], content-type=[text/xml; charset=UTF-8], connection=[keep-alive], host=[localhost:9113], Content-Length=[213], SOAPAction=[""], user-agent=[Apache CXF 2.2.12], Content-Type=[text/xml; charset=UTF-8], Accept=[*/*], pragma=[no-cache]} 
  8. Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns1:execute xmlns:ns1="http://impl.ws.com"><arg0 xmlns="http://impl.ws.com">張健</arg0></ns1:execute></soap:Body></soap:Envelope> 
  9. -------------------------------------- 
  10. 2011-7-29 12:59:07 org.apache.cxf.interceptor.LoggingOutInterceptor$LoggingCallback onClose 
  11. 信息: Outbound Message 
  12. --------------------------- 
  13. ID: 1 
  14. Encoding: UTF-8 
  15. Content-Type: text/xml 
  16. Headers: {} 
  17. Payload: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"><soap:Body><ns1:executeResponse xmlns:ns1="http://impl.ws.com"><out>歡迎 張健,調用WebService服務....</out></ns1:executeResponse></soap:Body></soap:Envelope> 
  18. -------------------------------------- 

     關於Cxf  + Spring3.0 集成開發WebService服務的入門例子程序就寫到這裏,有問題的童鞋能夠留言。咱們一塊兒討論, 謝謝!

相關文章
相關標籤/搜索