JAX-RS

TwitterFacebook
Get flash to fully experience Pearltrees
public class RestClient { protected Client client; protected ObjectMapper mapper = new ObjectMapper(); http://blogs.steeplesoft.com/2012/01/a-jersey-pojomapping-clientserver-example/

A Jersey POJOMapping Client/Server Example | Coming Up for Air

This time I will demonstrate how easy and dead simple is to write a REST application using Atmosphere annotations…with the help of Jersey ! http://jfarcand.wordpress.com/2009/05/21/getting-started-with-the-atmosphere-framework-part-ii-writing-a-rest-application-with-comet-support/

Getting started with the Atmosphere Framework part II: Writing a REST application with Comet support

En 2 mots, REST (Representation State Transfer) est un principe d'architecture applicative qui s'appuie sur les principes fondateurs du Web : les URI qui représentent des ressources auxquelles votre application se réfère Le protocole HTTP et ses méthodes GET, PUT, PUT et DELETE qui permettent d'interagir avec ces ressources La dimension "Stateless" permet d'assurer une montée en charge sans limite Les mime type qui permettent de décrire le contenu d'une interaction Alors évidemment vous ne pourrez pas découvrir automatiquement dans un annuaire un service REST ; vous ne pourrez pas dynamiquement faire correspondre son contenu à un objet construit dynamiquement ; vous ne pourrez pas l'implémenter sur tout un ensemble de protocoles de MQSeries à IMAP/SMTP en passant par SOAP ; vous ne gèrerez pas la sécurité, les transactions, les attachements, les versions ou la sémantique... http://blog.arkzoyd.com/2011/01/jax-rs-ou-comment-creer-et-utiliser-des.html

JAX-RS ou Comment créer et utiliser des services RESTful en 10 min ?

JAX-RS as the one Java web framework to rule them all?

One of the things about Java that sometimes gets made fun of is the huge number of Java based web frameworks. There certainly are many, of all shapes and sizes! http://macstrac.blogspot.com/2009/01/jax-rs-as-one-web-framework-to-rule.html

Using JAX-RS (Jersey) to build a JPA/JAXB-backed JSON REST API | java rants

http://www.javarants.com/2008/12/25/using-jax-rs-jersey-to-build-a-jpajaxb-backed-json-rest-api/ Building applications for deployment to the web has evolved over the last several years to be focused on dynamic behavior, separation of model/view/controller, and simplified but scalable configuration and deployment.