Which is a good java REST framework?
I would like it to be deployed with Tomcat 6.
|
|
|
See my answer on: RESTFul Web Development with Java EE 6:
|
||||
|
|
|
You can try RESTEasy. It isn't application server dependent. (Doesn't require an AS at all). You can also try an alternative, but you really should use a JAX-RS implementation : |
|||
|
|
|
Also you can try Spring Framework 3.x.x. |
|||
|
|
|
AFAIK, Jersey is the JAX-RS reference implementation. I've used it several times for REST webservice servers.
|
|||
|
|
|
I've had a pretty good experience with Jersey. It's pretty easy to integrate it with Tomcat. |
|||
|
|
|
I have had good experiences with Restlet: http://www.restlet.org/ Here is a tutorial on running Restlet in Tomcat: http://danilogurovich.wordpress.com/2008/09/23/a-simple-restlet-demo-application/ |
|||
|
|
|
Play! framework is very good, also more easier than Jersey. You can use with or without tomcat. |
|||
|
|