乡下人产国偷v产偷v自拍,国产午夜片在线观看,婷婷成人亚洲综合国产麻豆,久久综合给合久久狠狠狠9

  • <output id="e9wm2"></output>
    <s id="e9wm2"><nobr id="e9wm2"><ins id="e9wm2"></ins></nobr></s>

    • 分享

      用Jersey開發(fā)RESTful服務

       corefashion 2014-07-26

      SOA專題

      用Jersey開發(fā)RESTful服務

        REST基礎概念:

      • 在REST中的一切都被認為是一種資源。
      • 每個資源由URI標識。
      • 使用統(tǒng)一的接口。處理資源使用POST,GET,PUT,DELETE操作類似創(chuàng)建,讀取,更新和刪除(CRUD)操作。
      • 無狀態(tài)。每個請求是一個獨立的請求。從客戶端到服務器的每個請求都必須包含所有必要的信息,以便于理解。
      • 通信都是通過展現(xiàn)。例如XML,JSON

      RESTful Web服務由于其簡單替代了基于SOAP的Web服務,并大型服務提供商所接受。這篇文章使用Jersey框架延伸JAX-RS API將展示如何創(chuàng)建一個REST風格的Web服務和客戶端。

       

      在Eclipse中,創(chuàng)建一個新的動態(tài)Web項目名為"RESTfulWS":

       

      下載Jersey zip bundle 這里 here. 需要包:

      1. asm-3.1.jar
      2. jersey-client-1.17.1.jar
      3. jersey-core-1.17.1.jar
      4. jersey-server-1.17.1.jar
      5. jersey-servlet-1.17.1.jar
      6. jsr311-api-1.1.1.jar

      jersey

      加入項目:

       

      創(chuàng)建Web服務類:

      package com.eviac.blog.restws;

      import javax.ws.rs.GET;
      import javax.ws.rs.Path;
      import javax.ws.rs.PathParam;
      import javax.ws.rs.Produces;
      import javax.ws.rs.core.MediaType;

      /**
       *
       * @author pavithra
       *
       */

      // @Path here defines class level path. Identifies the URI path that
      // a resource class will serve requests for.
      @Path("UserInfoService")
      public class UserInfo {

       // @GET here defines, this method will method will process HTTP GET
       // requests.
       @GET
       // @Path here defines method level path. Identifies the URI path that a
       // resource class method will serve requests for.
       @Path("/name/{i}")
       // @Produces here defines the media type(s) that the methods
       // of a resource class can produce.
       @Produces(MediaType.TEXT_XML)
       // @PathParam injects the value of URI parameter that defined in @Path
       // expression, into the method.
       public String userName(@PathParam("i") String i) {

        String name = i;
        return "<User>" + "<Name>" + name + "</Name>" + "</User>";
       }

       @GET
       @Path("/age/{j}")
       @Produces(MediaType.TEXT_XML)
       public String userAge(@PathParam("j") int j) {

        int age = j;
        return "<User>" + "<Age>" + age + "</Age>" + "</User>";
       }
      }

      配置web.xml

      <?xml version="1.0" encoding="UTF-8"?> 
      <web-app xmlns:xsi="http://www./2001/XMLSchema-instance" xmlns="http://java./xml/ns/javaee" xmlns:web="http://java./xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java./xml/ns/javaee http://java./xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> 
        <display-name>RESTfulWS</display-name> 
        <servlet> 
          <servlet-name>Jersey REST Service</servlet-name> 
          <servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer</servlet-class> 
          <init-param> 
            <param-name>com.sun.jersey.config.property.packages</param-name> 
            <param-value>com.eviac.blog.restws</param-value> 
          </init-param> 
          <load-on-startup>1</load-on-startup> 
        </servlet> 
        <servlet-mapping> 
          <servlet-name>Jersey REST Service</servlet-name> 
          <url-pattern>/rest/*</url-pattern> 
        </servlet-mapping> 
      </web-app>

      點按這個項目 run as ->run on server.

      瀏覽器瀏覽:http://localhost:8080/RESTfulWS/rest/UserInfoService/name/Pavithra

      URL說明:

       

      創(chuàng)建一個調(diào)用客戶端:

      package com.eviac.blog.restclient;

      import javax.ws.rs.core.MediaType;

      import com.sun.jersey.api.client.Client;
      import com.sun.jersey.api.client.ClientResponse;
      import com.sun.jersey.api.client.WebResource;
      import com.sun.jersey.api.client.config.ClientConfig;
      import com.sun.jersey.api.client.config.DefaultClientConfig;

      /**
       *
       * @author pavithra
       *
       */
      public class UserInfoClient {

       public static final String BASE_URI = "http://localhost:8080/RESTfulWS";
       public static final String PATH_NAME = "/UserInfoService/name/";
       public static final String PATH_AGE = "/UserInfoService/age/";

       public static void main(String[] args) {

        String name = "Pavithra";
        int age = 25;

        ClientConfig config = new DefaultClientConfig();
        Client client = Client.create(config);
        WebResource resource = client.resource(BASE_URI);

        WebResource nameResource = resource.path("rest").path(PATH_NAME + name);
        System.out.println("Client Response \n"
          + getClientResponse(nameResource));
        System.out.println("Response \n" + getResponse(nameResource) + "\n\n");

        WebResource ageResource = resource.path("rest").path(PATH_AGE + age);
        System.out.println("Client Response \n"
          + getClientResponse(ageResource));
        System.out.println("Response \n" + getResponse(ageResource));
       }

       /**
        * Returns client response.
        * e.g :
        * GET http://localhost:8080/RESTfulWS/rest/UserInfoService/name/Pavithra
        * returned a response status of 200 OK
        *
        * @param service
        * @return
        */
       private static String getClientResponse(WebResource resource) {
        return resource.accept(MediaType.TEXT_XML).get(ClientResponse.class)
          .toString();
       }

       /**
        * Returns the response as XML
        * e.g : <User><Name>Pavithra</Name></User>
        *
        * @param service
        * @return
        */
       private static String getResponse(WebResource resource) {
        return resource.accept(MediaType.TEXT_XML).get(String.class);
       }
      }

      運行這個客戶端代碼,得到結(jié)果:

      Client Response
      GET http://localhost:8080/RESTfulWS/rest/UserInfoService/name/Pavithra returned a response status of 200 OK
      Response
      <User><Name>Pavithra</Name></User>

      Client Response
      GET http://localhost:8080/RESTfulWS/rest/UserInfoService/age/25 returned a response status of 200 OK
      Response
      <User><Age>25</Age></User>

      RESTful的java客戶端調(diào)用案例源碼

      使用Apache CXF開發(fā)RESTful服務

      使用Apache CXF開發(fā)Web服務

      使用Spring Webservices建立SOAP服務代理

      REST專題

      1

      shefansxyh   2014-07-23    1討論    557瀏覽

      如題,若應用能夠支持一億 并發(fā) 量,應用應從哪幾個方面如手?請大伽不吝賜教!..

      banq   2014-07-22    1討論    358瀏覽

      Orleans 是微軟推出的類似Scala Akka的Actor模型,可用于實現(xiàn) DDD +EventSourcing/CQRS系統(tǒng)。 Orlea....

      banq   2014-07-20    0討論    1059瀏覽

      國內(nèi)大部分號稱 云計算 的產(chǎn)品基本是主機托管+數(shù)據(jù)中心,很多人認為 ....

      banq   2014-07-16    1討論    830瀏覽

      這是一篇討論客戶端MVC和服務器端MVC的比較文章。 首先分離關注是架構(gòu)設計的一個基本原則,多層架構(gòu)中:數(shù)據(jù)存儲 服務層 API層和表現(xiàn)層各層之間應該最小依賴,服務層只需要知道在哪里存儲數(shù)據(jù),A....

      banq   2014-07-08    0討論    1226瀏覽

      一位Node.js guru大牛 TJ Holowaychuk最近發(fā)表了 再會Node.js ,他曾經(jīng)是Empress, Mocha, Jade, Stylus Koa等參與者,TJ在這篇宣言中首先強....




        本站是提供個人知識管理的網(wǎng)絡存儲空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點。請注意甄別內(nèi)容中的聯(lián)系方式、誘導購買等信息,謹防詐騙。如發(fā)現(xiàn)有害或侵權內(nèi)容,請點擊一鍵舉報。
        轉(zhuǎn)藏 分享 獻花(0

        0條評論

        發(fā)表

        請遵守用戶 評論公約

        類似文章 更多