up vote 37 down vote favorite
30
share [g+] share [fb]

With JSR 311 and it's implementations we have a powerful standard for exposing Java objects via Rest. However on the client side there seems to be something missing that is comparable to Apache Axis for SOAP - something that hides the web service and marshals the data transparently back to Java objects.

How do you create Java RESTful clients? Using HTTPConnection and manual parsing of the result? Or specialized clients for e.g. Jersey or Apache CXR?

link|improve this question

feedback

11 Answers

up vote 19 down vote accepted

As I mentioned in this thread I tend to use Jersey which implements JAX-RS and comes with a nice REST client. The nice thing is if you implement your RESTful resources using JAX-RS then the Jersey client can reuse the entity providers such as for JAXB/XML/JSON/Atom and so forth - so you can reuse the same objects on the server side as you use on the client side unit test.

For example here is a unit test case from the Apache Camel project which looks up XML payloads from a RESTful resource (using the JAXB object Endpoints). The resource(uri) method is defined in this base class which just uses the Jersey client API.

e.g.

    clientConfig = new DefaultClientConfig();
    client = Client.create(clientConfig);

    resource = client.resource("http://localhost:8080");
    // lets get the XML as a String
    String text = resource("foo").accept("application/xml").get(String.class);

BTW I hope that future version of JAX-RS add a nice client side API along the lines of the one in Jersy

link|improve this answer
feedback

This is an old question (2008) so there are many more options now than there were then:

  • Apache CXF has three different REST Client options
  • Jersey (mentioned above).
  • Spring also has its own called RestTemplate
  • Commons HTTP Client build your own.
link|improve this answer
feedback

You can use the standard Java SE APIs:

private void updateCustomer(Customer customer) { 
    try { 
        URL url = new URL("http://www.example.com/customers"); 
        HttpURLConnection connection = (HttpURLConnection) url.openConnection(); 
        connection.setDoOutput(true); 
        connection.setInstanceFollowRedirects(false); 
        connection.setRequestMethod("PUT"); 
        connection.setRequestProperty("Content-Type", "application/xml"); 

        OutputStream os = connection.getOutputStream(); 
        jaxbContext.createMarshaller().marshal(customer, os); 
        os.flush(); 

        connection.getResponseCode(); 
        connection.disconnect(); 
    } catch(Exception e) { 
        throw new RuntimeException(e); 
    } 
} 

Or you can use the REST client APIs provided by JAX-RS implementations such as Jersey. These APIs are easier to use, but require additional jars on your class path.

WebResource resource = client.resource("http://www.example.com/customers"); 
ClientResponse response = resource.type("application/xml");).put(ClientResponse.class, "<customer>...</customer."); 
System.out.println(response); 

For more information see:

link|improve this answer
feedback

You can also check Restlet which has full client-side capabilities, more REST oriented that lower-level libraries such as HttpURLConnection or Apache HTTP Client (which we can leverage as connectors).

Best regards, Jerome Louvel

link|improve this answer
feedback

You could try Rapa. Let us know your feedback about the same. And feel free to log issues or expected features.

link|improve this answer
Rapa has a really nice interface and few dependencies. A good alternative to RestSharp in the .NET world. – Ben Godfrey Apr 6 '11 at 17:04
feedback

I use Apache HTTPClient to handle all the HTTP side of things.

I write XML SAX parsers for the XML content that parses the XML into your object model. I believe that Axis2 also exposes XML -> Model methods (Axis 1 hid this part, annoyingly). XML generators are trivially simple.

It doesn't take long to code, and is quite efficient, in my opinion.

link|improve this answer
In my opinion this is the worst way to do REST. Manually handling serialization in Java is a waste of time when you have so many options like JAXB and Jackson. Even loading the whole document and using XPath is marginally slower than SAX and nothing compared to getting the XML (network speed). – Adam Gent Feb 28 '11 at 18:59
feedback

If you only wish to invoke a REST service and parse the response you can try out REST Assured:

// Make a GET request to "/lotto"
String json = get("/lotto").asString()
// Parse the JSON response
List<String> winnderIds = with(json).get("lotto.winners.winnerId");

// Make a POST request to "/shopping"
String xml = post("/shopping").andReturn().body().asString()
// Parse the XML
Node category = with(xml).get("shopping.category[0]");
link|improve this answer
feedback

Just found Apache Wink in the Apache Incubator. Could be a interesting project for creating REST servers and clients.

link|improve this answer
feedback

check this out: http://igorpolevoy.blogspot.com/2011/01/java-rest-with-ease.html

thanks

igor

link|improve this answer
feedback

Check out Resting.

It promises to invoke REST services and create list of objects from XML/JSON/YAML response in one step.

link|improve this answer
feedback

I'd like to point out 2 more options:

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.