All of this and more in this
http://blog.aestasit.com/develop-restful-services-like-a-ninja-part-1/
http://blog.aestasit.com/develop-restful-services-like-a-ninja_part-2/
superb tutorial on RestEasy of my friend Luciano.
Top stuff. Kudos.
Showing posts with label Resteasy. Show all posts
Showing posts with label Resteasy. Show all posts
Friday, April 15, 2011
Sunday, March 20, 2011
JAX-RS, RestEasy, Restful WS
A great tutorial from Luciano:
http://blog.aestasit.com/develop-restful-services-like-a-ninja-part-1/
http://blog.aestasit.com/develop-restful-services-like-a-ninja-%E2%80%93-part-2/
JAX-RS = Java API for RESTful Web Services
here http://www.ibm.com/developerworks/webservices/library/wa-jaxrs/index.html general presentation of JAX-RS
The Resteasy doc is here (don't expect complete examples, only code snippets are provided)
http://docs.jboss.org/resteasy/docs/1.0.1.GA/userguide/html/
the annotations are in javax.ws.rs package
Path(value="/contacts")
@GET
@Consumes
@Produces
@Provider
@QueryParam
@HeaderParam
@MatrixParam
@CookieParam
(see the rest on the javadoc...)
Here a decent example (better than the official doc anyway)
http://blog.aestasit.com/develop-restful-services-like-a-ninja-part-1/
http://blog.aestasit.com/develop-restful-services-like-a-ninja-%E2%80%93-part-2/
JAX-RS = Java API for RESTful Web Services
here http://www.ibm.com/developerworks/webservices/library/wa-jaxrs/index.html general presentation of JAX-RS
The Resteasy doc is here (don't expect complete examples, only code snippets are provided)
http://docs.jboss.org/resteasy/docs/1.0.1.GA/userguide/html/
the annotations are in javax.ws.rs package
Path(value="/contacts")
@GET
@Consumes
@Produces
@Provider
@QueryParam
@HeaderParam
@MatrixParam
@CookieParam
(see the rest on the javadoc...)
Here a decent example (better than the official doc anyway)
Labels:
REST,
Resteasy,
webservices
Subscribe to:
Posts (Atom)