91-9990449935 0120-4256464 |
RESTful JAX-RS Annotations ExampleJAX-RS API provides following annotations to develop RESTful applications in java. We are using jersey implementation for developing JAX-RS examples. Click me to download jersey jar files. JAX-RS AnnotationsThe javax.ws.rs package contains JAX-RS annotations.
JAX-RS @Path, @GET and @PathParam AnnotationsFile: HelloService.java File: web.xml File: index.html Now run this application on server, you will see the following output: Output: Jersey say : trainingtrains JAX-RS Multiple @PathParam AnnotationFile: HelloService.java File: web.xml It is same as above example. File: index.html Now run this application on server, you will see the following output: Output: getDate is called, year/month/day : 2014/12/5 JAX-RS @FormParam and @POST AnnotationFile: HelloService.java File: web.xml It is same as above example. File: index.html Now run this application on server, you will see the following output: Output: Click me to download this example
Next TopicJAX-RS File Download Example
|