RESTful WebService 入门实例

 

/* 新建MavenProject,使用以下代码,创建类和POM文件。
使用命令行切换到Project根目录,运行mvn package , mvn exec:java,即可启动RESTful service。
在浏览器中输入http://localhost:8080/myapp/myresource/,
此时会显示内容: Got it!

---Java RESTful Web Service 实战 */


package my.restful;
 2
 3 import org.glassfish.grizzly.http.server.HttpServer;
 4 import org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpServerFactory;
 5 import org.glassfish.jersey.server.ResourceConfig;
 6
 7 import java.io.IOException;
 8 import java.net.URI;
 9
10 /**
11  * Main class.
12  *
13  */
14 public class Main {
15     // Base URI the Grizzly HTTP server will listen on
16     public static final String BASE_URI = "http://localhost:8080/myapp/";
17
18     /**
19      * Starts Grizzly HTTP server exposing JAX-RS resources defined in this application.
20      * @return Grizzly HTTP server.
21      */
22     public static HttpServer startServer() {
23         // create a resource config that scans for JAX-RS resources and providers
24         // in my.restful package
25         final ResourceConfig rc = new ResourceConfig().packages("my.restful");
26
27         // create and start a new instance of grizzly http server
28         // exposing the Jersey application at BASE_URI
29         return GrizzlyHttpServerFactory.createHttpServer(URI.create(BASE_URI), rc);
30     }
31
32     /**
33      * Main method.
34      * @param args
35      * @throws IOException
36      */
37     public static void main(String[] args) throws IOException {
38         final HttpServer server = startServer();
39         System.out.println(String.format("Jersey app started with WADL available at "
40                 + "%sapplication.wadl\nHit enter to stop it...", BASE_URI));
41         System.in.read();
42         server.stop();
43     }
44 }
package my.restful;

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

/**
 * Root resource (exposed at "myresource" path)
 */
@Path("myresource")
public class MyResource {

    /**
     * Method handling HTTP GET requests. The returned object will be sent
     * to the client as "text/plain" media type.
     *
     * @return String that will be returned as a text/plain response.
     */
    @GET
    @Produces(MediaType.TEXT_PLAIN)
    public String getIt() {
        return "Got it!";
    }
}
package my.restful;

import javax.ws.rs.client.Client;
import javax.ws.rs.client.ClientBuilder;
import javax.ws.rs.client.WebTarget;

import org.glassfish.grizzly.http.server.HttpServer;

import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import static org.junit.Assert.assertEquals;

public class MyResourceTest {

    private HttpServer server;
    private WebTarget target;

    @Before
    public void setUp() throws Exception {
        // start the server
        server = Main.startServer();
        // create the client
        Client c = ClientBuilder.newClient();

        // uncomment the following line if you want to enable
        // support for JSON in the client (you also have to uncomment
        // dependency on jersey-media-json module in pom.xml and Main.startServer())
        // --
        // c.configuration().enable(new org.glassfish.jersey.media.json.JsonJaxbFeature());

        target = c.target(Main.BASE_URI);
    }

    @After
    public void tearDown() throws Exception {
        server.stop();
    }

    /**
     * Test to see that the message "Got it!" is sent in the response.
     */
    @Test
    public void testGetIt() {
        String responseMsg = target.path("myresource").request().get(String.class);
        assertEquals("Got it!", responseMsg);
    }
}
 1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 2          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
 3
 4     <modelVersion>4.0.0</modelVersion>
 5
 6     <groupId>my.restful</groupId>
 7     <artifactId>my-first-service</artifactId>
 8     <packaging>jar</packaging>
 9     <version>1.0-SNAPSHOT</version>
10     <name>my-first-service</name>
11
12     <dependencyManagement>
13         <dependencies>
14             <dependency>
15                 <groupId>org.glassfish.jersey</groupId>
16                 <artifactId>jersey-bom</artifactId>
17                 <version>${jersey.version}</version>
18                 <type>pom</type>
19                 <scope>import</scope>
20             </dependency>
21         </dependencies>
22     </dependencyManagement>
23
24     <dependencies>
25         <dependency>
26             <groupId>org.glassfish.jersey.containers</groupId>
27             <artifactId>jersey-container-grizzly2-http</artifactId>
28         </dependency>
29         <!-- uncomment this to get JSON support:
30          <dependency>
31             <groupId>org.glassfish.jersey.media</groupId>
32             <artifactId>jersey-media-moxy</artifactId>
33         </dependency>
34         -->
35         <dependency>
36             <groupId>junit</groupId>
37             <artifactId>junit</artifactId>
38             <version>4.9</version>
39             <scope>test</scope>
40         </dependency>
41     </dependencies>
42
43     <build>
44         <plugins>
45             <plugin>
46                 <groupId>org.apache.maven.plugins</groupId>
47                 <artifactId>maven-compiler-plugin</artifactId>
48                 <version>2.5.1</version>
49                 <inherited>true</inherited>
50                 <configuration>
51                     <source>1.7</source>
52                     <target>1.7</target>
53                 </configuration>
54             </plugin>
55             <plugin>
56                 <groupId>org.codehaus.mojo</groupId>
57                 <artifactId>exec-maven-plugin</artifactId>
58                 <version>1.2.1</version>
59                 <executions>
60                     <execution>
61                         <goals>
62                             <goal>java</goal>
63                         </goals>
64                     </execution>
65                 </executions>
66                 <configuration>
67                     <mainClass>my.restful.Main</mainClass>
68                 </configuration>
69             </plugin>
70         </plugins>
71     </build>
72
73     <properties>
74         <jersey.version>2.22.1</jersey.version>
75         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
76     </properties>
77 </project>
时间: 2024-10-08 10:29:13

RESTful WebService 入门实例的相关文章

RESTful WebService入门

RESTful WebService入门 RESTful WebService是比基于SOAP消息的WebService简单的多的一种轻量级Web服务,RESTful WebService是没有状态的,发布和调用都非常的轻松容易. 下面写一个最简单的Hello World例子,以便对RESTful WebService有个感性认识.因为非常专业理论化的描述RESTful WebService是一件理解起来很痛苦的事情.看看例子就知道个大概了,再看理论就容易理解多了. /** * RESTful

RESTful WebService入门(转)

原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 .作者信息和本声明.否则将追究法律责任.http://lavasoft.blog.51cto.com/62575/229206 RESTful WebService是比基于SOAP消息的WebService简单的一种轻量级Web服务,RESTful WebService是没有状态的,发布和调用都是非常的轻松容易. 以下是一个最简单的Hello World例子,以便对RESTful WebService有个感性认识.因为非常专业理论化

RESTful WebService入门【转】

ESTful WebService是比基于SOAP消息的WebService简单的多的一种轻量级Web服务,RESTful WebService是没有状态的,发布和调用都非常的轻松容易. 下面写一个最简单的Hello World例子,以便对RESTful WebService有个感性认识.因为非常专业理论化的描述RESTful WebService是一件理解起来很痛苦的事情.看看例子就知道个大概了,再看理论就容易理解多了. /** * RESTful WebService入门 * @author

WebService入门实例教程

什么是WebService 通过使用WebService,您的应用程序可以向全世界发布信息,或提供某项功能,它是基于Web的服务,通过Web进行发布.查找和使用. WebService脚本平台需支持XML+HTTP. HTTP协议是最常用的因特网协议. XML提供了一种可用于不同的平台和编程语言之间的语言. 为什么要使用WebService 最重要的事情是协同工作. 1.跨平台调用(WebService不局限于操作系统,你可以在Windows上调用linux上的WebService服务,反之亦然

webservice cxf 实例

转自百度空间:http://hi.baidu.com/cpuhandou/item/b8b439860afb99c9ee083d65 CXF webservice 开发入门 1.       新建一个JavaWebProject,命名为cxfDemo选择[next],为project添加userLib库.        2.       打开新建的project,在src下新建包com.handou.cxf.test.在包中新建inteface名称为HelloWorld代码如下:@WebServ

在Eclipse中使用Jersey和Tomcat构建RESTful WebService及其调用

在Eclipse中使用Jersey和Tomcat构建RESTful WebService及其调用 RESTful Web 服务简介 REST 在 2000 年由 Roy Fielding 在博士论文中提出,他是 HTTP 规范 1.0 和 1.1 版的首席作者之一. REST 中最重要的概念是资源(resources),使用全球 ID(通常使用 URI)标识.客户端应用程序使用 HTTP 方法(GET/ POST/ PUT/ DELETE)操作资源或资源集.RESTful Web 服务是使用 H

SOAP webserivce 和 RESTful webservice 对比及区别

简单对象访问协议(Simple Object Access Protocol,SOAP)是一种基于 XML 的协议,可以和现存的许多因特网协议和格式结合使用,包括超文本传输协议(HTTP),简单邮件传输协议(SMTP),多用途网际邮件扩充协议(MIME),基于"通用"传输协议是 SOAP的一个优点.它还支持从消息系统到远程过程调用(Remote Procedure Call,RPC)等大量的应用程序.SOAP提供了一系列的标准,如WSRM(WS-Reliable Messaging)形

DWR之入门实例(一)

DWR(Direct Web Remoting)是一个WEB远程调用框架.利用这个框架可以让AJAX开发变得很简单.利用DWR可以在客户端利用JavaScript直接调用服务端的Java方法并返回值给JavaScript就好像直接本地客户端调用一样(DWR根据Java类来动态生成JavaScrip代码).它的最新版本DWR0.6添加许多特性如:支持Dom Trees的自动配置,支持Spring(JavaScript远程调用spring bean),更好浏览器支持,还支持一个可选的commons-

React 入门实例教程

React 入门实例教程 作者: 阮一峰 日期: 2015年3月31日 现在最热门的前端框架,毫无疑问是 React . 上周,基于 React 的 React Native 发布,结果一天之内,就获得了 5000 颗星,受瞩目程度可见一斑. React 起源于 Facebook 的内部项目,因为该公司对市场上所有 JavaScript MVC 框架,都不满意,就决定自己写一套,用来架设 Instagram 的网站.做出来以后,发现这套东西很好用,就在2013年5月开源了. 由于 React 的