“JAX-RS: The Java API for RESTful Web Services” Talk at Devoxx08
December 15th, 2008 by nilsThis talk was given by Paul Sandoz. He showed a few examples and listed the following existing implementations of JSR 311 (JAX-RS):
- Jboss RESTEasy
- Apache CXF
- Jersey. (Reference Impl.)
- Restlet
- Triaxrs
He was testing the services on a command line with curl (i.e. curl -v -d x=1 -H “Accept: application/xml” http://localhost:8080/xyz or “Accept: application/json”).
The JAX-RS Overview is supposed to be a good starting point to implement RESTful web services. His presentation and a zip file wih examples can be downloaded from his blog.
