I'm will build a web service. I'd rather like REST/JSON than SOAP. Anybody can tell me what is the best Java EE framework for that? Thanks!

link|improve this question

62% accept rate
feedback

5 Answers

up vote 15 down vote accepted

JAX-RS is the Java EE standard for RESTful web services. For an example check out my blog:

The example demonstrates XML messages. If you only want JSON messages change the MediaType:

@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("{id}")
public Customer read(@PathParam("id") long id) {
    return entityManager.find(Customer.class, id);
}

To support both JSON and XML messages do the following:

@GET
@Produces({MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON})
@Path("{id}")
public Customer read(@PathParam("id") long id) {
    return entityManager.find(Customer.class, id);
}
link|improve this answer
Thanks! your blog is useful! – Thành Lê Oct 8 '10 at 14:44
This example seems to be for XML, not JSON? – rich Dec 10 '10 at 20:04
@rich: I have updated my answer to contain info on how to update my example to work with JSON. – Blaise Doughan Dec 10 '10 at 20:19
1  
Nice! Although I assume the second example should have one MediaType for JSON and one for XML? – rich Dec 15 '10 at 19:24
@rich: Good catch :) – Blaise Doughan Dec 15 '10 at 19:28
feedback

For a REST framework, I'd recommend JAX-RS (it's a part of the Java EE 6 API, or you can use it on its own). Jersey is the reference implementation, but there are others.

For JSON handling, you have two options:

  1. Use the Jersey-JSON extension, with JAXB annotations on your entity classes.

  2. Jackson. Setting it up will be slightly more work at the start, but I found it easier to deal with in the long run.

link|improve this answer
Thanks for your answer! – Thành Lê Oct 13 '10 at 12:57
feedback

I would also suggest having a look at the Restlet Framework which supports JAX-RS but has much more capabilities thanks to its Restlet API (client-side and server-side). It is also available in 5 consistent editions for Java SE, Java EE, GWT, GAE and Android!

Best regards,

Jerome

Restlet ~ Founder and Technical Lead

link|improve this answer
feedback

For a different approach to RESTful web services, have a look at RESTx. The focus there is on reusable components and the ability to quickly create new web services, simply by posting configurations (or filling out a small form in a browser) on a running server.

That way, you can quickly create many variations of the same service. For example, every posted configuration to a "database component" could contain a different query. The user of the resulting web service doesn't need to know about the underlying component and the specific parameters you used to create the new RESTful web service.

If you need to write your own components, you can do so in Java, Python or server-side JavaScript.

The site has a link to a life demo as well.

link|improve this answer
feedback

Take a look at ReXSL, which is JAX-RS based web framework, which integrates together your API and your web front-end.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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