本文簡單介紹了WebService服務技術,提供了在Apache CXF 框架JAX-RS模塊下WebService開發的簡單示例。 ...
一、WebService簡介
為了支持跨網路的機器間相互操作交互而設計,用於開發分散式的互操作的應用程式組件。
Web Service服務通常被定義為一組模塊化的API,它們可以通過網路進行調用,來執行遠程系統的請求服務,而XML 是 Web Services 的基礎。
二、快速入門
- 將${JDK}\bin目錄添加到path環境變數
- 新建一個文件夾,打開命令行,並cd到該目錄
- 執行命令
- wsimport -s . http://ws.webxml.com.cn/WebServices/MobileCodeWS.asmx?wsdl
- 新建Java工程,將文件夾下的內容拷貝到src目錄
- 創建測試類,測試功能
-
1 public class TestService { 2 public static void main(String[] args) { 3 MobileCodeWS mobileCodeWS = new MobileCodeWS(); 4 MobileCodeWSSoap soap = mobileCodeWS.getMobileCodeWSSoap(); 5 String info = soap.getMobileCodeInfo("1886666", ""); 6 System.out.println(info); 7 } 8 }
三、SOAP(imple Object Access Protocol)
使用HTTP協議傳輸XML格式的數據。
- SOAP請求示例
1 POST /InStock HTTP/1.1 2 Host: www.example.org 3 Content-Type: application/soap+xml; charset=utf-8 4 Content-Length: nnn 5 6 <?xml version="1.0"?> 7 <soap:Envelope 8 xmlns:soap="http://www.w3.org/2001/12/soap-envelope" 9 soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> 10 11 <soap:Body xmlns:m="http://www.example.org/stock"> 12 <m:GetStockPrice> 13 <m:StockName>IBM</m:StockName> 14 </m:GetStockPrice> 15 </soap:Body> 16 17 </soap:Envelope>
-
SOAP響應示例
-
1 HTTP/1.1 200 OK 2 Content-Type: application/soap+xml; charset=utf-8 3 Content-Length: nnn 4 5 <?xml version="1.0"?> 6 <soap:Envelope 7 xmlns:soap="http://www.w3.org/2001/12/soap-envelope" 8 soap:encodingStyle="http://www.w3.org/2001/12/soap-encoding"> 9 10 <soap:Body xmlns:m="http://www.example.org/stock"> 11 <m:GetStockPriceResponse> 12 <m:Price>34.5</m:Price> 13 </m:GetStockPriceResponse> 14 </soap:Body> 15 16 </soap:Envelope>
四、WSDL(Web Services Description Language)
- 網路服務描述語言是一種使用 XML 編寫的文檔。這種文檔可描述某個 Web service, 例如服務的名稱, 地址, 方法, 參數類型, 返回值類型等
- Web服務的使用說明書
- 每一個WebService都有一個對應的WSDL
- WSDL地址組成 : 服務發佈地址?wsdl
- WSDL文檔示例
1 <message name="getTermRequest"> 2 <part name="term" type="xs:string"/> 3 </message> 4 5 <message name="getTermResponse"> 6 <part name="value" type="xs:string"/> 7 </message> 8 9 <portType name="glossaryTerms"> 10 <operation name="getTerm"> 11 <input message="getTermRequest"/> 12 <output message="getTermResponse"/> 13 </operation> 14 </portType>
四、Apache CXF 框架
-
主頁: http://cxf.apache.org/
-
Apache CXF = Celtix + XFire,開始叫 Apache CeltiXfire,後來更名為 Apache CXF 了,以下簡稱為 CXF。CXF 繼承了 Celtix 和 XFire 兩大開源項目的精華,提供了對 JAX-WS 全面的支持,並且提供了多種 Binding 、DataBinding、Transport 以及各種 Format 的支持,並且可以根據實際項目的需要,採用代碼優先(Code First)或者 WSDL 優先(WSDL First)來輕鬆地實現 Web Services 的發佈和使用。Apache CXF已經是一個正式的Apache頂級項目。
1、CXF提供的服務分為兩種方式
-
JAX-WS
-
全稱是 JavaTM API forRESTful Web Services
-
-
JAX-RS
-
全稱是 Java API for RESTful Web Services
-
-
關於JAX-WS與JAX-RS兩者是不同風格的SOA架構。前者以動詞為中心,指定的是每次執行函數。而後者以名詞為中心,每次執行的時候指的是資源
-
JAX-RS是JAVA EE6 引入的一個新技術。
-
是一個Java 編程語言的應用程式介面,支持按照表述性狀態轉移(REST)架構風格創建Web服務。JAX-RS使用了Java SE5引入的Java標註來簡化Web服務的客戶端和服務端的開發和部署。
-
簡單來理解兩種方式的區別
-
JAX-WS是基於SOAP協議傳輸XML數據
-
JAX-RS是基於HTTP協議傳輸XML數據或JSON數據
-
2、使用CXF開發WebService服務端(JAX-RS)
-
RESTful
-
一種軟體架構風格,設計風格而不是標準,只是提供了一組設計原則和約束條件。它主要用於客戶端和伺服器交互類的軟體。基於這個風格設計的軟體可以更簡潔,更有層次,更易於實現緩存等機制。
-
-
RESTful的好處
-
基於這種風格架構,軟體編寫可以更簡潔
-
基於HTTP協議, 支持多種消息格式,比如XML 、JSON
-
更易於實現緩存機制
-
-
創建Maven工程,類型為WAR
-
引入坐標
<!--cxf-rs的坐標 -->
1 <dependency> 2 <groupId>org.apache.cxf</groupId> 3 <artifactId>cxf-rt-frontend-jaxrs</artifactId> 4 <version>3.0.1</version> 5 </dependency> 6 <!-- 增強cxf-rs,可以處理json數據 --> 7 <dependency> 8 <groupId>org.apache.cxf</groupId> 9 <artifactId>cxf-rt-rs-extension-providers</artifactId> 10 <version>3.0.1</version> 11 </dependency> 12 <!-- 上面的依賴必須依賴此包 --> 13 <dependency> 14 <groupId>org.codehaus.jettison</groupId> 15 <artifactId>jettison</artifactId> 16 <version>1.3.7</version> 17 </dependency> 18 <!-- spring坐標 --> 19 <dependency> 20 <groupId>org.springframework</groupId> 21 <artifactId>spring-context</artifactId> 22 <version>4.1.7.RELEASE</version> 23 </dependency> 24 <!--spring整合web開發 --> 25 <dependency> 26 <groupId>org.springframework</groupId> 27 <artifactId>spring-web</artifactId> 28 <version>4.1.7.RELEASE</version> 29 </dependency>
- 創建實體類com.itheima.domain.User
1 // 指定在序列化對象時,生成的根節點的名字 2 @XmlRootElement(name = "user") 3 public class User { 4 private int id; 5 private String name; 6 private int age; 7 8 public User() { 9 } 10 public User(int id, String name, int age) { 11 super(); 12 this.id = id; 13 this.name = name; 14 this.age = age; 15 } 16 public int getId() { 17 return id; 18 } 19 public void setId(int id) { 20 this.id = id; 21 } 22 public String getName() { 23 return name; 24 } 25 public void setName(String name) { 26 this.name = name; 27 } 28 public int getAge() { 29 return age; 30 } 31 public void setAge(int age) { 32 this.age = age; 33 } 34 @Override 35 public String toString() { 36 return "User [id=" + id + ", name=" + name + ", age=" + age + "]"; 37 } 38 }
-
創建介面com.itheima.service.UserService
1 public interface UserService { 2 // URL = http://localhost:8080/rs_server/webservice/userService/user 3 @POST 4 @Path("/user") 5 @Consumes({ "application/xml", "application/json" }) 6 public void saveUser(User user); 7 8 // URL = http://localhost:8080/rs_server/webservice/userService/user?id=1 9 @DELETE 10 @Path("/user") 11 @Consumes({ "application/xml" }) 12 public void delUser(@QueryParam("id") int id); 13 14 // URL = http://localhost:8080/rs_server/webservice/userService/user 15 @PUT 16 @Path("/user") 17 @Consumes({ "application/xml", "application/json" }) 18 public void updateUser(User user); 19 20 // URL = http://localhost:8080/rs_server/webservice/userService/user 21 @GET 22 @Path("/user") 23 @Produces({ "application/xml", "application/json" }) 24 public List<User> findAllUsers(); 25 26 // URL = http://localhost:8080/rs_server/webservice/userService/user/1 27 @GET 28 @Path("/user/{id}") 29 @Consumes({ "application/xml" }) 30 @Produces({ "application/xml", "application/json" }) 31 public User findUserByID(@PathParam("id") int id); 32 }
- 創建介面實現類
1 public class UserServiceImpl implements UserService { 2 3 @Override 4 public void saveUser(User user) { 5 System.out.println("用戶保存成功:" + user); 6 } 7 8 @Override 9 public void delUser(int id) { 10 System.out.println("ID為 " + id + " 的用戶刪除成功"); 11 } 12 13 @Override 14 public void updateUser(User user) { 15 System.out.println("用戶更新成功:" + user); 16 } 17 18 @Override 19 public List<User> findAllUsers() { 20 List<User> list = new ArrayList<>(); 21 list.add(new User(1, "zhangsan", 11)); 22 list.add(new User(2, "lisi", 22)); 23 return list; 24 } 25 26 @Override 27 public User findUserByID(int id) { 28 return new User(1, "zhangsan", 11); 29 } 30 }
- 在web.xml中增加以下配置
1 <!-- 指定Spring框架配置文件的位置 --> 2 <context-param> 3 <param-name>contextConfigLocation</param-name> 4 <param-value>classpath:applicationContext.xml</param-value> 5 </context-param> 6 <!-- 配置Spring框架的監聽器 --> 7 <listener> 8 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> 9 </listener> 10 <!-- 配置CXF的Servlet --> 11 <servlet> 12 <servlet-name>cxf</servlet-name> 13 <servlet-class>org.apache.cxf.transport.servlet.CXFServlet</servlet-class> 14 </servlet> 15 <!--指定Servlet的訪問路徑 --> 16 <servlet-mapping> 17 <servlet-name>cxf</servlet-name> 18 <url-pattern>/webservice/*</url-pattern> 19 </servlet-mapping>
- 配置applicationContext.xml
1 <?xml version="1.0" encoding="UTF-8"?> 2 3 <beans xmlns="http://www.springframework.org/schema/beans" 4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jaxrs="http://cxf.apache.org/jaxrs" 5 xmlns:soap="http://cxf.apache.org/bindings/soap" 6 xsi:schemaLocation="http://www.springframework.org/schema/beans 7 http://www.springframework.org/schema/beans/spring-beans.xsd 8 http://www.springframework.org/schema/tx 9 http://www.springframework.org/schema/tx/spring-tx.xsd 10 http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd "> 11 <!-- 註冊服務提供者 --> 12 <bean id="userServiceImpl" class="com.itheima.service.impl.UserServiceImpl"></bean> 13 <!-- 14 發佈Web服務 15 address : 請求地址 16 --> 17 <jaxrs:server address="/userService"> 18 <jaxrs:serviceBeans> 19 <ref bean="userServiceImpl" /> 20 </jaxrs:serviceBeans> 21 <!-- 22 攔截請求信息,非必須 23 設置後,可以在控制台觀察到請求信息 24 --> 25 <jaxrs:inInterceptors> 26 <bean class="org.apache.cxf.interceptor.LoggingInInterceptor"></bean> 27 </jaxrs:inInterceptors> 28 <!-- 29 攔截響應信息,非必須 30 設置後,可以在控制台觀察到響應信息 31 --> 32 <jaxrs:outInterceptors> 33 <bean class="org.apache.cxf.interceptor.LoggingOutInterceptor"></bean> 34 </jaxrs:outInterceptors> 35 </jaxrs:server> 36 </beans>
3、使用CXF開發WebService客戶端(JAX-RS)
-
創建Maven工程,類型為JAR
- 引入坐標
1 <!-- cxf-rs的坐標 --> 2 3 <dependency> 4 <groupId>org.apache.cxf</groupId> 5 <artifactId>cxf-rt-frontend-jaxrs</artifactId> 6 <version>3.0.1</version> 7 </dependency> 8 <!-- cxf-rs客戶端的坐標 --> 9 <dependency> 10 <groupId>org.apache.cxf</groupId> 11 <artifactId>cxf-rt-rs-client</artifactId> 12 <version>3.0.1</version> 13 </dependency> 14 <!-- 增強cxf-rs,可以處理json數據 --> 15 <dependency> 16 <groupId>org.apache.cxf</groupId> 17 <artifactId>cxf-rt-rs-extension-providers</artifactId> 18 <version>3.0.1</version> 19 </dependency> 20 <!-- 上面的依賴必須依賴此包 --> 21 <dependency> 22 <groupId>org.codehaus.jettison</groupId> 23 <artifactId>jettison</artifactId> 24 <version>1.3.7</version> 25 </dependency> 26 </dependencies>
-
將Server工程的實體類拷貝過來
-
示例測試代碼
1 public class CXFTest { 2 // HTTP 405 Method Not Allowed : 請求方式錯誤,例如,服務端要求使用POST請求,客戶端發起請求的時候,使用了PUT請求 3 //保存 4 @Test 5 public void test1() { 6 WebClient// 伺服器地址 : 埠號/項目名/ 7 // web.xml中cxfServlet指定的地址/applicationContext.xml中指定的地址/類上Path指定的地址/方法上Path指定的地址 8 .create("http://localhost:8080/cxf_rs_server/webService/userService/user")// 指定請求的地址 9 .post(new User(11, "張三", "123")); 10 } 11 //刪除 12 @Test 13 public void test2() { 14 WebClient 15 .create("http://localhost:8080/cxf_rs_server/webService/userService/user") 16 .query("id", 100).delete(); 17 } 18 19 //更新 20 @Test 21 public void test3() { 22 WebClient 23 .create("http://localhost:8080/cxf_rs_server/webService/userService/user") 24 .put(new User(11, "張三", "123")); 25 } 26 27 //查詢所有 28 @Test 29 public void test4() { 30 Collection<? extends User> collection = WebClient 31 .create("http://localhost:8080/cxf_rs_server/webService/userService/user") 32 .getCollection(User.class); 33 for (User user : collection) { 34 System.out.println(user); 35 } 36 } 37 38 //根據欄位查詢結果 39 @Test 40 public void test5() { 41 User user = WebClient 42 .create("http://localhost:8080/cxf_rs_server/webService/userService/user") 43 .query("id", 11).get(User.class); 44 45 System.out.println(user); 46 } 47 48 @Test 49 public void test6() { 50 User user = WebClient 51 .create("http://localhost:8080/cxf_rs_server/webService/userService/user/" + 22 + "/icon") 52 .get(User.class); 53 54 System.out.println(user); 55 } 56 57 @Test 58 public void test7() { 59 WebClient 60 .create("http://localhost:8080/cxf_rs_server/webService/userService/user")// 指定請求的地址 61 .type(MediaType.APPLICATION_JSON)// 指定本客戶端傳遞給伺服器的數據格式 62 .accept(MediaType.APPLICATION_JSON)//指定伺服器傳遞迴來的數據格式,本客戶端能處理的數據格式 63 .post(new User(11, "張三", "123")); 64 } 65 }
4、RESTFul常用註解
4.1 路徑相關
-
@Path : 設置訪問路徑. 可以用在方法或類上面
4.2 參數類型相關
-
@Consumers: 定義方法參數類型,常用值為 : "application/xml", "application/json"
-
@Producers: 定義方法返回值類型,常用值為 : "application/xml", "application/json"
4.3 參數相關
-
@QueryParam : 查詢參數. 客戶端傳參:url?id=10
-
@PathParam : 路徑參數. 客戶端傳參:url/10
4.4 操作類型相關
-
@GET: 查詢操作
-
@POST: 添加操作
-
@DELETE : 刪除操作
-
@PUT: 修改操作