- 浏览: 793525 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (651)
- Java (39)
- Java 初学者小问题 (66)
- 设计模式 (7)
- 项目管理 (3)
- 数据库 (1)
- 算法 (2)
- Java practices (6)
- Effective Java2读书笔记 (78)
- Linux (2)
- programming ruby 读书笔记 (5)
- Core Java Ninth Edition Volume I 读书笔记 (15)
- Pro Git 读书笔记 (12)
- Git (3)
- Maven in Action 读书笔记 (20)
- Web (12)
- 非技术类书籍 (11)
- 电影 (40)
- Web Cache (1)
- jquery (0)
- 历史 (4)
- Dive Into HTML5 读书笔记 (13)
- 三国演义小学毕业考 (79)
- 高效能人士的7个习惯 读书笔记 (12)
- Java Performance 读书笔记 (3)
- Protocol Buffer 学习笔记 (6)
- Mongo DB 学习笔记 (7)
- Morphia 学习笔记 (7)
- Algorithms -- Princeton 学习笔记 (13)
- String研究 (10)
- Hadoop: The Definitive Guide 读书笔记 (3)
- Java与模式读书笔记 (5)
- Date研究 (3)
- The Roman Empire 听课笔记 (4)
- Algorithms -- Standford 学习笔记 (16)
- Core Java Ninth Edition Volume II 读书笔记 (9)
- Thinking in Java 4th Edition 读书笔记 (21)
- Node : Up and Running 学习笔记 (5)
- Eloquent Javascript (8)
- Smashing Node.js 读书笔记 (1)
- Algorithms II -- Standford 学习笔记 (19)
- Algorithm II -- Princeton 学习笔记 (14)
- 网络安全 (2)
- Javascript (4)
- 正则表达式 (1)
- JAVA 7/8 (15)
- JVM (10)
- NodeJS (1)
- 鸟哥的linux私房菜读书笔记 (14)
- Web Service (1)
- The art of programming (9)
- Introduction to Algorithm 读书笔记 (4)
- Java 源码阅读 (0)
- Spring in Action 读书笔记 (2)
- Java Network Programming 读书笔记 (2)
最新评论
-
心存高远:
谢谢作者分享,刚好看到这里不太明白,现在茅塞顿开。不过runt ...
关于 Maven的传递依赖的理解 -
sxlkk:
851228082 写道甚至在某次技术会议现场遇到《Maven ...
关于 Maven的传递依赖的理解 -
851228082:
851228082 写道a----compile----b-- ...
第五章 坐标和依赖 -
851228082:
a----compile----b-----provided- ...
第五章 坐标和依赖 -
851228082:
甚至在某次技术会议现场遇到《Maven in action》的 ...
关于 Maven的传递依赖的理解
the original artifact is in : http://www.vogella.com/articles/REST/article.html
RESTful Webservices with Java (Jersey / JAX-RS)
This tutorial explains how to develop RESTful web services in Java with the JAX-RS reference implementation Jersey.
In this tutorial Eclipse 3.6 (Helios), Java 1.6, Tomcat 6.0 and JAX-RS 1.1. (Jersey 1.5) is used.
REST is an architectural style which is based on web-standards and the HTTP protocol. REST was first described by Roy Fielding in 2000.
In a REST based architecture everything is a resource. A resource is accessed via a common interface based on the HTTP standard methods. In an REST architecture you typically have a REST server which provides access to the resources and a REST client which accesses and modify the REST resources. Every resource should support the HTTP common operations. Resources are identified by global IDs (which are typically URIs).
REST allows that resources have different representations, e.g. text, xml, json etc. The rest client can ask for specific representation via the HTTP protocol (Content Negotiation).
The HTTP standards methods which are typical used in REST are PUT, GET, POST, DELETE.
-
GET defines a reading access of the resource without side-effects. The resource is never changed via a GET request, e.g. the request has no side effects (idempotent).
-
PUT creates a new resource, must also be idempotent.
-
DELETE removes the resources. The operations are idempotent, they can get repeated without leading to different results.
-
POST updates an existing resource or creates a new resource.
A RESTFul webservices is based on the HTTP methods and the concept of REST. It typically defines the base URI for the services, the MIME-types its supports (XML, Text, JSON, user-defined,..) and the set of operations (POST, GET, PUT, DELETE) which are supported. JAX-RS supports the creation of XML and JSON via JAXB .
Java defines standard REST support via JAX-RS (The Java API for RESTful Web Services) in JSR 311 .JAX-RS uses annotations to define the REST relevance of classes.
Via your "web.xml" you will register a servlet provided by Jersey and also define the path under which your REST web application will be available. The base URL of this servlet is:
http://your_domain:port/display-name/url-pattern/path_from_rest_class
This servlet which analyze the incoming HTTP request and select the correct class and method to respond to this request. This selection is based on annotation in the class and methods.
The most important annotations in JAX-RS are the following.
Table 1. Sample Table
@PATH(your_path) | Sets the path to base URL + /your_path. The base URL is based on your application name, the servlet and the URL pattern from the web.xml" configuration file. |
@POST | Indicates that the following method will answer to a HTTP POST request |
@GET | Indicates that the following method will answer to a HTTP GET request |
@PUT | Indicates that the following method will answer to a HTTP PUT request |
@DELETE | Indicates that the following method will answer to a HTTP DELETE request |
@Produces(MediaType.TEXT_PLAIN [, more-types ]) | @Produces defines which MIME type is delivered by a method annotated with @GET. In the example text ("text/plain") is produced. Other examples would be "application/xml" or "application/json". |
@Consumes(type [, more-types ]) | @Consumes defines which MIME type is consumed by this method. |
@PathParam | Used to inject values from the URL into a method parameter. This way you inject for example the ID of a resource into the method to get the correct object. |
The complete path to a resource is therefore based on the base URL and the @PATh annotation in your class.
http://your_domain:port/display-name/url-pattern/path_from_rest_class
Jersey is the reference implementation for this specification. Jersey contains basically a REST server and a REST client. The core client is mainly available for testing and provides a library to communicate with the server.
A REST web application consists of data classes (resources) and services. These two types are typically maintained in different packages as the Jersey servlet will be instructed via the "web.xml"to scan certain packages for data classes.
Download Jersey from Jersey Homepage . As of the time of writing the file is called ""A zip of Jersey containing the Jersey jars, core dependencies (it does not provide dependencies for third party jars beyond the those for JSON support) and JavaDoc." Download this zip; it contains the jar files required for the REST functionality.
This tutorial is using Tomcat as servlet container and Eclipse WTP as a development environment. Please see Eclipse WTP and Apache Tomcat for instructions on how to install and use Eclipse WTP and Apache Tomcat.
Alternative you could also use the Google App Engine for running the server part of the following REST examples. If you use the Google App Engine you don't have to setup Tomcat. If you are using GAE/J you have to create App Engine projects instead of "Dynamic Web Project".
Create a new "Dynamic Web Project" "de.vogella.jersey.first". See Eclipse WTP development for how to create a new dynamic web project.
Copy all jars from your Jersey download into the folder "WEB-INF/lib".
Create the following class.
package de.vogella.jersey.first; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; // POJO, no interface no extends // The class registers its methods for the HTTP GET request using the @GET annotation. // Using the @Produces annotation, it defines that it can deliver several MIME types, // text, XML and HTML. // The browser requests per default the HTML MIME type. //Sets the path to base URL + /hello @Path("/hello") public class Hello { // This method is called if TEXT_PLAIN is request @GET @Produces(MediaType.TEXT_PLAIN) public String sayPlainTextHello() { return "Hello Jersey" ; } // This method is called if XML is request @GET @Produces(MediaType.TEXT_XML) public String sayXMLHello() { return "<?xml version=\"1.0\"?>" + "<hello> Hello Jersey" + "</hello>" ; } // This method is called if HTML is request @GET @Produces(MediaType.TEXT_HTML) public String sayHtmlHello() { return "<html> " + "<title>" + "Hello Jersey" + "</title>" + "<body><h1>" + "Hello Jersey" + "</body></h1>" + "</html> " ; } }
This class register itself as a get resource via the @GET annotation. Via the @Produces annotation it defines that it delivers two MIME types, "text" and "HTML" code. It also defines via the "Path" annotation that its service should be available under the URL "hello".
The browser will always request the html MIME type. To see the text version you can use tool like curl .
You need to register Jersey as the servlet dispatcher for REST requests. Open the file "web.xml" and modify the file to the following.
<?xml version="1.0" encoding="UTF-8" ?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5" > <display-name>de.vogella.jersey.first</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>de.vogella.jersey.first</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>
The parameter "com.sun.jersey.config.property.package" defines in which package jersey will look for the web service classes. This property must point to your resources classes. The URL pattern defines part of the base URL your application will be placed.
Run you web application in Eclipse. See Eclipse WTP for details on how to run dynamic web applications.
Test your REST service under: "http://localhost:8080/de.vogella.jersey.first/rest/hello". This name is derived from the "display-name" defined in the "web.xml" file, augmented with the servlet-mapping url-pattern and the "hello" @Path annotation from your class file. You should get the message "Hello Jersey".
The browser requests the HTML representation of your resource. In the next chapter we are going to write a client which will read the XML representation.
Jersey contains a REST client library which can be used for testing or to build a real client in Java. Alternative you could use Apache HttpClient to create a client.
Create a new Java "de.vogella.jersey.first.client" and add the jersey jars to the project and the project build path. Create the following test class.
package de.vogella.jersey.first.client; import java.net.URI; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.UriBuilder; 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; public class Test { public static void main(String[] args) { ClientConfig config = new DefaultClientConfig(); Client client = Client.create(config); WebResource service = client.resource(getBaseURI()); // Fluent interfaces System.out.println(service.path("rest" ).path("hello" ).accept(MediaType.TEXT_PLAIN).get(ClientResponse.class ).toString()); // Get plain text System.out.println(service.path("rest" ).path("hello" ).accept(MediaType.TEXT_PLAIN).get(String.class )); // Get XML System.out.println(service.path("rest" ).path("hello" ).accept(MediaType.TEXT_XML).get(String.class )); // The HTML System.out.println(service.path("rest" ).path("hello" ).accept(MediaType.TEXT_HTML).get(String.class )); } private static URI getBaseURI() { return UriBuilder.fromUri("http://localhost:8080/de.vogella.jersey.first" ).build(); } }
JAX-RS supports the automatic creation of XML and JSON via JAXB. For an introduction into XML please see Java and XML - Tutorial . For an introduction into JAXB please see JAXB . You can continue this tutorial without reading these tutorials but they contain more background information.
Create a new "Dynamic Web Project" "de.vogella.jersey.jaxb" and copy all jersey jars into the folder "WEB-INF/lib".
Create your domain class.
package de.vogella.jersey.jaxb.model; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement // JAX-RS supports an automatic mapping from JAXB annotated class to XML and JSON // Isn't that cool? public class Todo { private String summary; private String description; public String getSummary() { return summary; } public void setSummary(String summary) { this .summary = summary; } public String getDescription() { return description; } public void setDescription(String description) { this .description = description; } }
Create the following resource class. This class simply return an instance of the Todo class.
package de.vogella.jersey.jaxb; import javax.ws.rs.GET; import javax.ws.rs.Path; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import de.vogella.jersey.jaxb.model.Todo; @Path("/todo") public class TodoResource { // This method is called if XMLis request @GET @Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON }) public Todo getXML() { Todo todo = new Todo(); todo.setSummary("This is my first todo" ); todo.setDescription("This is my first todo" ); return todo; } // This can be used to test the integration with the browser @GET @Produces({ MediaType.TEXT_XML }) public Todo getHTML() { Todo todo = new Todo(); todo.setSummary("This is my first todo" ); todo.setDescription("This is my first todo" ); return todo; } }
Change "web.xml" to the following.
<?xml version="1.0" encoding="UTF-8" ?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5" > <display-name>de.vogella.jersey.jaxb</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>de.vogella.jersey.jaxb</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 you web application in Eclipse and validate that you can access your service. Your application should be available under "http://localhost:8080/de.vogella.jersey.jaxb/rest/todo".
Create a new Java "de.vogella.jersey.jaxb.client" and add the jersey jars to the project and the project build path. Create the following test class.
package de.vogella.jersey.jaxb.client; import java.net.URI; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.UriBuilder; import com.sun.jersey.api.client.Client; import com.sun.jersey.api.client.WebResource; import com.sun.jersey.api.client.config.ClientConfig; import com.sun.jersey.api.client.config.DefaultClientConfig; public class Test { public static void main(String[] args) { ClientConfig config = new DefaultClientConfig(); Client client = Client.create(config); WebResource service = client.resource(getBaseURI()); // Get XML System.out.println(service.path("rest" ).path("todo" ).accept(MediaType.TEXT_XML).get(String.class )); // Get XML for application System.out.println(service.path("rest" ).path("todo" ).accept(MediaType.APPLICATION_JSON).get(String.class )); // Get JSON for application System.out.println(service.path("rest" ).path("todo" ).accept(MediaType.APPLICATION_XML).get(String.class )); } private static URI getBaseURI() { return UriBuilder.fromUri("http://localhost:8080/de.vogella.jersey.jaxb" ).build(); } }
This section creates a CRUD (Create, Read, Update, Delete) restful web service. It will allow to maintain a list of todos in your web application via HTTP calls.
Create a new dynamic project "de.vogella.jersey.todo" and add the jersey libs. Modify "web.xml" to the following.
<?xml version="1.0" encoding="UTF-8" ?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5" > <display-name>de.vogella.jersey.todo</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>de.vogella.jersey.todo.resources</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>
Create the following data model and a Singleton which serves as the data provider for the model. We use the implementation based on an enumeration. Please see the link for details. The Todo class is annotated with a JAXB annotation. See Java and XML to learn about JAXB.
package de.vogella.jersey.todo.model; import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class Todo { private String id; private String summary; private String description; public Todo(){ } public Todo (String id, String summary){ this .id = id; this .summary = summary; } public String getId() { return id; } public void setId(String id) { this .id = id; } public String getSummary() { return summary; } public void setSummary(String summary) { this .summary = summary; } public String getDescription() { return description; } public void setDescription(String description) { this .description = description; } }
package de.vogella.jersey.todo.dao; import java.util.HashMap; import java.util.Map; import de.vogella.jersey.todo.model.Todo; public enum TodoDao { instance; private Map<String, Todo> contentProvider = new HashMap<String, Todo>(); private TodoDao() { Todo todo = new Todo("1" , "Learn REST" ); todo.setDescription("Read http://www.vogella.com/articles/REST/article.html" ); contentProvider.put("1" , todo); todo = new Todo("2" , "Do something" ); todo.setDescription("Read complete http://www.vogella.com" ); contentProvider.put("2" , todo); } public Map<String, Todo> getModel(){ return contentProvider; } }
The rest service can be used via HTML forms. The following HTML form will allow to post new data to the service. Create the following page "create_todo.html" in the folder "WEB-INF".
<!DOCTYPE html> <html> <head> <title>Form to create a new resource</title> </head> <body> <form action="../de.vogella.jersey.todo/rest/todos" method="POST" > <label for ="id" >ID</label> <input name="id" /> <br/> <label for ="summary" >Summary</label> <input name="summary" /> <br/> Description: <TEXTAREA NAME="description" COLS=40 ROWS=6 ></TEXTAREA> <br/> <input type="submit" value="Submit" /> </form> </body> </html>
Create the following classes which will be used as REST resources.
package de.vogella.jersey.todo.resources; import javax.ws.rs.Consumes; import javax.ws.rs.DELETE; import javax.ws.rs.GET; import javax.ws.rs.PUT; import javax.ws.rs.Produces; import javax.ws.rs.core.Context; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Request; import javax.ws.rs.core.Response; import javax.ws.rs.core.UriInfo; import javax.xml.bind.JAXBElement; import de.vogella.jersey.todo.dao.TodoDao; import de.vogella.jersey.todo.model.Todo; public class TodoResource { @Context UriInfo uriInfo; @Context Request request; String id; public TodoResource(UriInfo uriInfo, Request request, String id) { this .uriInfo = uriInfo; this .request = request; this .id = id; } //Application integration @GET @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON}) public Todo getTodo() { Todo todo = TodoDao.instance.getModel().get(id); if (todo==null) throw new RuntimeException("Get: Todo with " + id + " not found" ); return todo; } // For the browser @GET @Produces(MediaType.TEXT_XML) public Todo getTodoHTML() { Todo todo = TodoDao.instance.getModel().get(id); if (todo==null) throw new RuntimeException("Get: Todo with " + id + " not found" ); return todo; } @PUT @Consumes(MediaType.APPLICATION_XML) public Response putTodo(JAXBElement<Todo> todo) { Todo c = todo.getValue(); return putAndGetResponse(c); } @DELETE public void deleteTodo() { Todo c = TodoDao.instance.getModel().remove(id); if (c==null) throw new RuntimeException("Delete: Todo with " + id + " not found" ); } private Response putAndGetResponse(Todo todo) { Response res; if (TodoDao.instance.getModel().containsKey(todo.getId())) { res = Response.noContent().build(); } else { res = Response.created(uriInfo.getAbsolutePath()).build(); } TodoDao.instance.getModel().put(todo.getId(), todo); return res; } }
package de.vogella.jersey.todo.resources; import java.io.IOException; import java.net.URI; import java.util.ArrayList; import java.util.List; import javax.servlet.http.HttpServletResponse; import javax.ws.rs.Consumes; import javax.ws.rs.FormParam; import javax.ws.rs.GET; import javax.ws.rs.POST; import javax.ws.rs.Path; import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.Context; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.Request; import javax.ws.rs.core.Response; import javax.ws.rs.core.UriInfo; import de.vogella.jersey.todo.dao.TodoDao; import de.vogella.jersey.todo.model.Todo; // Will map the resource to the URL todos @Path("/todos") public class TodosResource { // Allows to insert contextual objects into the class, // e.g. ServletContext, Request, Response, UriInfo @Context UriInfo uriInfo; @Context Request request; // Return the list of todos to the user in the browser @GET @Produces(MediaType.TEXT_XML) public List<Todo> getTodosBrowser() { List<Todo> todos = new ArrayList<Todo>(); todos.addAll(TodoDao.instance.getModel().values()); return todos; } // Return the list of todos for applications @GET @Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON}) public List<Todo> getTodos() { List<Todo> todos = new ArrayList<Todo>(); todos.addAll(TodoDao.instance.getModel().values()); return todos; } // retuns the number of todos // Use http://localhost:8080/de.vogella.jersey.todo/rest/todos/count // to get the total number of records @GET @Path("count") @Produces(MediaType.TEXT_PLAIN) public String getCount() { int count = TodoDao.instance.getModel().size(); return String.valueOf(count); } @POST @Produces(MediaType.TEXT_HTML) @Consumes(MediaType.APPLICATION_FORM_URLENCODED) public void newTodo(@FormParam("id") String id, @FormParam("summary") String summary, @FormParam("description") String description, @Context HttpServletResponse servletResponse) throws IOException { Todo todo = new Todo(id,summary); if (description!=null){ todo.setDescription(description); } TodoDao.instance.getModel().put(id, todo); servletResponse.sendRedirect("../create_todo.html" ); } // Defines that the next path parameter after todos is // treated as a parameter and passed to the TodoResources // Allows to type http://localhost:8080/de.vogella.jersey.todo/rest/todos/1 // 1 will be treaded as parameter todo and passed to TodoResource @Path("{todo}") public TodoResource getTodo(@PathParam("todo") String id) { return new TodoResource(uriInfo, request, id); } }
This TodosResource uses "@PathParam" annotation to use the parameter "id" to forward the request to the class "TodoResource".
Run you web application in Eclipse and test the availability of your REST service under: "http://localhost:8080/de.vogella.jersey.todo/rest/todos". You should see the XML representation of your Todo items.
To see the count of Todo items use "http://localhost:8080/de.vogella.jersey.todo/rest/todos/count" to see an exiting todo use "http://localhost:8080/de.vogella.jersey.todo/rest/todos/{id}", e.g. "http://localhost:8080/de.vogella.jersey.todo/rest/todos/1" to see the todo with ID 1. We currently have only todos with the id's 1 and 2, all other requests will result an HTTP error code.
Please note that with the browser you can only issue HTTP GET requests. The next chapter will use the jersey client libraries to issue get, post and delete.
Create a Java project "de.vogella.jersey.todo.client". Create a folder "lib", place all jersey libs there and add then to your classpath. Create the following class.
package de.vogella.jersey.todo.client; import java.net.URI; import javax.ws.rs.core.MediaType; import javax.ws.rs.core.UriBuilder; 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; import com.sun.jersey.api.representation.Form; import de.vogella.jersey.todo.model.Todo; public class Tester { public static void main(String[] args) { ClientConfig config = new DefaultClientConfig(); Client client = Client.create(config); WebResource service = client.resource(getBaseURI()); // Create one todo Todo todo = new Todo("3" , "Blabla" ); ClientResponse response = service.path("rest" ).path("todos" ).path(todo.getId()).accept(MediaType.APPLICATION_XML).put(ClientResponse.class , todo); // Return code should be 201 == created resource System.out.println(response.getStatus()); // Get the Todos System.out.println(service.path("rest" ).path("todos" ).accept(MediaType.TEXT_XML).get(String.class )); // Get XML for application System.out.println(service.path("rest" ).path("todos" ).accept(MediaType.APPLICATION_JSON).get(String.class )); // Get JSON for application System.out.println(service.path("rest" ).path("todos" ).accept(MediaType.APPLICATION_XML).get(String.class )); // Get the Todo with id 1 System.out.println(service.path("rest" ).path("todos/1" ).accept(MediaType.APPLICATION_XML).get(String.class )); // get Todo with id 1 service.path("rest" ).path("todos/1" ).delete(); // Get the all todos, id 1 should be deleted System.out.println(service.path("rest" ).path("todos" ).accept(MediaType.APPLICATION_XML).get(String.class )); // Create a Todo Form form = new Form(); form.add("id" , "4" ); form.add("summary" , "Demonstration of the client lib for forms" ); response = service.path("rest" ).path("todos" ).type(MediaType.APPLICATION_FORM_URLENCODED) .post(ClientResponse.class , form); System.out.println("Form response " + response.getEntity(String.class )); // Get the all todos, id 4 should be created System.out.println(service.path("rest" ).path("todos" ).accept(MediaType.APPLICATION_XML).get(String.class )); } private static URI getBaseURI() { return UriBuilder.fromUri("http://localhost:8080/de.vogella.jersey.todo" ).build(); } }
The above example contains a form which calls a post method of your rest service.
Usually every programming language provide somewhere libraries for creating HTTP get, post, put and delete requests. For Java the project Apache HttpClient .
http://jersey.java.net/ Jersey Homepage
http://www.ibm.com/developerworks/library/wa-aj-tomcat/ IBM Article about Rest with Tomcat and Jersey
发表评论
-
Zz A birds-eye view on “how web servers work?”
2014-03-19 20:04 925Many times we wonder that how ... -
zz HTTP access control (CORS)
2013-02-08 12:20 2741HTTP access control (CORS) ... -
Zz CSS Block vs Inline CSS Display Styles
2012-06-20 05:58 988The original articles are here ... -
Zz jqGrid 学习笔记
2012-05-19 19:01 3190JQGrid JQ ... -
jqGrid Wiki
2012-05-19 18:59 1495A very detailed jqGrid referenc ... -
Zz jqGrid data stored in browser cache?
2012-05-16 09:19 1213The original article is in htt ... -
Zz Best Practices for Speeding Up Your Web Site
2012-05-14 19:05 1438The original article is here: ... -
Zz 关于 firefox 的 network.http.pipelining
2012-05-11 11:29 1944载自: http://arliweng.users.sourc ... -
Difference of encode, encodeURI and encodeURIComponent
2012-04-05 09:12 1058When to use which? The esc ... -
How to set encoding in .getJSON JQuery
2012-03-05 22:59 1952Q: In my web app, i submit ... -
CSS Sprites: CSS图片合并技术详解(ZZ)
2011-12-15 17:29 1782CSS Sprites是最初的时候被直译为“CSS小鬼”、“ ...
相关推荐
Learn how to design and develop distributed web services in Java using RESTful architectural principals and the JAX-RS specification in Java EE 6. With this hands-on reference, you'll focus on ...
1. **JAX-RS**(Java API for RESTful Web Services)是Java平台上的REST(Representational State Transfer)风格Web服务的标准。REST是一种轻量级的架构风格,它基于HTTP协议,利用URL来定位资源,使用HTTP方法...
Learn how to design and develop distributed web services in Java, using RESTful architectural principles and the JAX-RS 2.0 specification in Java EE 7. By focusing on implementation rather than theory...
**RESTful服务与Java JAX-RS** REST(Representational State Transfer)是一种网络应用程序的设计风格和开发方式,基于HTTP协议,以简洁明了的方式描述了客户端与服务器之间的交互。RESTful服务强调资源的表述和...
《RESTful Java with JAX-RS 2.0》是一本专注于Java语言在构建RESTful服务方面的专著。作者Bill Burke以其在Java技术方面的深厚底蕴和对RESTful架构的深刻理解,引领读者深入理解并掌握JAX-RS 2.0标准。 书中首先...
在本文中,我们将深入探讨如何使用Java API for RESTful Web Services (JAX-RS) 和 Jersey 实现文件上传功能。标题“JAX-RS-FileUpload-Jersey-Example”暗示了我们将集中讨论如何利用这两个强大的工具来创建一个...
标题中的“一个包含jax-ws和jax-rs的例子(含服务端和客户端)”是指这是一个示例项目,它演示了如何使用Java API for XML Web Services (JAX-WS)和Java API for RESTful Web Services (JAX-RS)来创建和消费Web服务。...
JAX-WS取代了早期的Java API for XML Processing (JAXP) 和SOAP with Attachments API for Java (SAAJ),提供了更加全面和集成化的Web服务解决方案。 JAX-WS的主要组成部分包括: 1. **服务端接口(Service ...
在开发基于Java的RESTful Web服务...综上所述,“Jax-RS所需要的依赖jar”集合包含了构建、测试和部署JAX-RS REST服务所需的全部组件,对于Java开发者来说,这是一个宝贵的资源,可以帮助他们快速启动和运行REST项目。
JAX-RS通过提供一套简单的注解和API,使得开发者能轻松地在Java应用中实现REST服务。 本资源“JAX-RS入门jar包集合”包含了开始学习和使用JAX-RS所需的基本库文件,这些jar包将帮助开发者快速搭建REST服务环境。...
RESTful Java with JAX-RS 2.0 英文无水印pdf pdf所有页面使用FoxitReader和PDF-XChangeViewer测试都可以打开 本资源转载自网络,如有侵权,请联系上传者或csdn删除 本资源转载自网络,如有侵权,请联系上传者...
JAX-RS,全称Java API for RESTful Web Services,是Java标准中定义的一套REST服务开发API。它允许开发者使用简单的注解如@Path、@GET、@POST来创建REST服务。JAX-RS的核心组件包括Resource类(用@Path注解)、HTTP...
在标题中提到的"莫斯科javaone大会关于JAX-RS(jersey)的演讲内容",说明了JAX-RS在莫斯科javaone大会上有专门的演讲。Jersey是JAX-RS的一个参考实现,提供了一套API用于构建RESTful Web Services。在演讲内容中,...
JAX-RS通过提供一套简单易用的API,使得开发者可以轻松地在Java应用中创建REST接口。 本压缩包包含JAX-RS的两个版本,即1.0和1.4。这两个版本主要的区别在于功能的完善和对标准的遵循程度。JAX-RS 1.0是最初的规范...
它是Java EE(Java Platform, Enterprise Edition)的一部分,也作为独立的JAX-RS Reference Implementation (Jersey)提供,以支持Java SE(Java Platform, Standard Edition)环境。 JAX-RS 2.1规范是JAX-RS的最新...
1. **JAX-RS基础**:JAX-RS是Java标准JSR 311和JSR 339的一部分,用于简化创建RESTful Web服务。它通过注解如`@Path`, `@GET`, `@POST`, `@PUT`, `@DELETE`等,使得开发者可以直接在Java方法上声明HTTP操作。 2. **...
4. **提供者与容器**: JAX-RS不强制使用特定的服务器或容器,它定义了一个API,服务器和容器如Jersey、RestEasy、Apache CXF等实现这个API来提供具体服务。 5. **拦截器与过滤器**: 通过`@Provider`注解,可以...