zoukankan      html  css  js  c++  java
  • Jersey(1.19.1)

    Maven Dependencies

    The following Maven dependencies need to be added to the pom:

    <dependency>
        <groupId>com.sun.jersey</groupId>
        <artifactId>jersey-server</artifactId>
        <version>1.19.1</version>
    </dependency>
    <dependency>
        <groupId>com.sun.jersey</groupId>
        <artifactId>jersey-grizzly2</artifactId>
        <version>1.19.1</version>
    </dependency>

    Creating a root resource

    Create the following Java class in your project:

    package com.huey.hello.jersey.resources;
    
    import javax.ws.rs.GET;
    import javax.ws.rs.Path;
    import javax.ws.rs.Produces;
    
    // The Java class will be hosted at the URI path "/helloworld"
    @Path("helloworld")
    public class HelloWorldResource {
        
        // The Java method will process HTTP GET requests
        @GET
        // The Java method will produce content identified by the MIME Media type "text/plain"
        @Produces("text/plain")
        public String sayHello() {
             // Return the textual content
            return "Hello World";
        }
        
    }

    The HelloWorldResource class is a very simple Web resource. The URI path of the resource is "/helloworld", it supports the HTTP GET method and produces cliched textual content of the MIME media type "text/plain".

    Deploying the root resource

    The root resource will be deployed using the Grizzly Web container.

     1 package com.huey.hello.jersey;
     2 
     3 import java.io.IOException;
     4 import java.net.URI;
     5 
     6 import javax.ws.rs.core.UriBuilder;
     7 
     8 import org.glassfish.grizzly.http.server.HttpServer;
     9 
    10 import com.sun.jersey.api.container.grizzly2.GrizzlyServerFactory;
    11 import com.sun.jersey.api.core.PackagesResourceConfig;
    12 import com.sun.jersey.api.core.ResourceConfig;
    13 
    14 public class HelloJersey {
    15 
    16     private static URI getBaseURI() {
    17         return UriBuilder.fromUri("http://localhost/").port(9998).build();
    18     }
    19 
    20     public static final URI BASE_URI = getBaseURI();
    21 
    22     protected static HttpServer startServer() throws IOException {
    23         System.out.println("Starting grizzly...");
    24         ResourceConfig rc = new PackagesResourceConfig("com.huey.hello.jersey.resources");
    25         return GrizzlyServerFactory.createHttpServer(BASE_URI, rc);
    26     }
    27 
    28     public static void main(String[] args) throws IOException {
    29         HttpServer httpServer = startServer();
    30         System.out.println(String.format("Jersey app started with WADL available at "
    31                         + "%sapplication.wadl
    Try out %shelloworld
    Hit enter to stop it...",
    32                         BASE_URI, BASE_URI));
    33         System.in.read();
    34         httpServer.stop();
    35     }
    36 }

    The HelloJersey class deploys the HelloWorldResource using the Grizzly Web container.

    Line 24 creates an initialization parameter that informs the Jersey runtime where to search for root resource classes to be deployed. In this case it assumes the root resource class in the package com.huey.hello.jersey.resources (or in a sub-package of).

    Line 25 deploys the root resource to the base URI "http://localhost:9998/" and returns a Grizzly HttpServer. The complete URI of the Hello World root resource is "http://localhost:9998/helloworld".

    Testing the root resource

    Goto the URI http://localhost:9998/helloworld in your favourite browser.

    Or, from the command line use curl:

    [huey@huey-K42JE ~]$ curl -i http://localhost:9998/helloworld
    HTTP/1.1 200 OK
    Content-Type: text/plain
    Date: Wed, 13 Apr 2016 14:14:40 GMT
    Transfer-Encoding: chunked
    
    Hello World
  • 相关阅读:
    在Centos7下源代码安装配置Nginx
    mysql5.7.21源码安装
    数据库设计三大范式
    电商项目中使用Redis实现秒杀功能
    PHP和Redis实现在高并发下的抢购及秒杀功能示例详解
    PHP面向对象(抽象类与抽象方法、接口的实现)
    php面向对象 封装继承多态 接口、重载、抽象类、最终类总结
    利用VHD虚拟文件加密自己的个人信息
    Chrome常用快捷键
    stl本子
  • 原文地址:https://www.cnblogs.com/huey/p/5389198.html
Copyright © 2011-2022 走看看