Reputation: 30232
I'm looking for a lightweight REST library.
It must be small (in kb size) an Fast (in total execution time). The optimal solution is a single jar without any dependencies what so ever.
The application is designed to run on the AppEngine so the library should work on GAE/J platform.
Upvotes: 5
Views: 12679
Reputation: 906
I love play framework 2.0. Easily, convert a static method into a rest call. Powerful routing mechanism. Serve webpages as well as rest calls.
Upvotes: 0
Reputation: 195
Just in case this ever helps anyone check out jrest-server , its a rest server ontop of appengine for java.
Upvotes: 0
Reputation: 142252
Take a look at http://www.restlet.org/ I have no idea if it will run on the Google App Engine.
Upvotes: 9
Reputation: 307
Try Jersey
http://wikis.sun.com/display/Jersey/Overview+of+JAX-RS+1.0+Features
https://jersey.dev.java.net/nonav/documentation/latest/user-guide.html
http://dlc.sun.com/pdf/820-4867/820-4867.pdf
Its extensive use of Java annotations massively reduces the amount of boilerplate needed.
Upvotes: 5