Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What are the best frameworks for implementing both client and server REST frameworks in Java? I've been struggling a little to find an easy to use solution.

Update: Both Jersey and Restlet seem like good options. We'll probably use Restlet but we'll experiment with both.

share|improve this question

10 Answers

up vote 9 down vote accepted

Restlet sounds like it should provide what you're looking for:

  • Support for client and server (in a relatively symmetric api)
  • Smart url binding
  • mime type understanding (given accepted mime types, it will ask your resources for their representation in that type)
  • Supports JAX-RS annotations (just like Jersey)
share|improve this answer
3  
+1 I've had excellent results with Restlet in a large production application. – Jim Ferrans Sep 30 '09 at 13:04

Jersey is really easy for both. To write web services, you use annotations:

@Path("/helloworld")
public class HelloWorldResource {

    // The Java method will process HTTP GET requests
    @GET
    // The Java method will produce content identified by the MIME Media
    // type "text/plain"
    @Produces("text/plain")
    public String helloWorld() {
        // Return some cliched textual content
        return "Hello World";
    }
}

For a client:

Client client = Client.create();
WebResource webResource = client.resource("http://localhost:8080/helloworld");
String s = webResource.get(String.class);
System.out.println(s); // prints Hello World
share|improve this answer
1  
+1 for Jersey, the JAX-RS (JSR 311) Reference Implementation. Also have a look at java.sun.com/javaone/2009/articles/gen_restful.jsp – Pascal Thivent Sep 30 '09 at 4:18

take a look at dropwizard too.

Josh

share|improve this answer

Restlet also support annotations in its 2.0 version, both on the client and server-side. The JAX-RS API is also supported as an extension.

Here is a simple example for server-side:

public class HelloWorldResource extends ServerResource {

    @Get
    public String represent() {
        return "hello, world";
    }

}

On the client-side:

// Outputting the content of a Web page  
new ClientResource("http://www.restlet.org").get().write(System.out);

For further documentation, check this page.

share|improve this answer
Restlet looks promising, but the documentation is disappointing. – deamon Jul 29 '10 at 9:09
The "Restlet in Action" book will be published by Manning in September 2012. It has a comprehensive coverage. Next, we will improve the tutorial and Javadocs (versions 2.2 and 3.0) – Jerome Louvel Aug 6 '12 at 17:41

There's JBoss' new RESTEasy library. It appears to be under rapid development since its initial launch. I've no idea if it's any good; it's on my 'check it out' list.

share|improve this answer

I haven't used it personally but some teams that I work with are using Spring 3 MVC. REST in Spring 3: @MVC looks like a good blog post overview. The RESTful features include "URI Templates", "Content Negotiation", "HTTP Method Conversion", "ETag support" and more.

Edit: Also, see this question: Can anyone recommend a Java web framework that is based on MVC and supports REST ?

share|improve this answer

I can recommend Apache wink, a new framework still in incubation mode, but very mature and high quality.

http://incubator.apache.org/wink/

It implements the JAX-RS specification, it has both client & server framework for REST development. Apache is standing behind this project - that's always a good sign (and a good license :-) )

What I love most about this framework is the intuitive integration with Spring, it's very useful if you want your framework to be easily configured and extended.

share|improve this answer
BTW, Restlet is also distributed under Apache Public License, in addition with other licensing options (EPL, LGPL 2.1 and 3.0, CDDL) :) – Jerome Louvel Aug 6 '12 at 17:40

If your are using Goolge AppEngine before they release a "reserve instance" feature, you might consider Xydra Restless which has few features but loads fast.

share|improve this answer

You could take a look at the CXF JAX-RS implementation. Among its features are:

  • (JAX-RS support) JSR-311 API 1.1
  • Maven artifacts for JAX-RS
  • Implementations of some JAX-RS related drafts
  • XOP support

For complete list of its features check the CXF web site for JAX-RS.

share|improve this answer

My favourite is Spring MVC, you have support for both, client and server side... And you have Android support too =)

For example, you can see a example of Spring Android here

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.