Reputation: 1196
I have a requirement to create RESTful web service.
I have narrowed down on 'Restlet' for the web service implementation.
Can someone tell me the clear pro's and con's of using Restlet and if there are any better alternatives.
thanks in advance
Upvotes: 1
Views: 2906
Reputation: 2892
Restlet has an extensive list of extensions for Spring, WADL, XML, JSON as well and many more, including an extension for JAX-RS API.
It is also the sole framework available in six consistent editions:
Its main benefits are:
The JAX-RS API can be a good choice if you are restricted to JCP approved APIs (then don't use Spring or any extension of the JAX-RS projects like Jersey and RESTeasy!), but otherwise Restlet is the most mature framework (initially released in 2005) and will give you, in its 2.0 version, all the benefits of annotations combined with a powerful and extensible class-oriented framework.
For a longer list of features, please check this page.
Best regards, Jerome Louvel
Restlet ~ Founder and Lead developer ~ http://www.restlet.org
Upvotes: 4
Reputation: 101
Jersey API can be used to implement RESTful Web services. http://jersey.java.net/
Other than RESTful Web services, Jersey also provide many other features.
Upvotes: 2
Reputation: 1196
Some more useful links regarding available REST frameworks and their comparisons:
Upvotes: 1
Reputation:
Apache Cocoon is a very good solution to implementing a RESTfull Web Services.
Upvotes: 0