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

I am calling a REST service that returns XML, and using Jaxb2Marshaller to marshal my classes (e.g. Foo, Bar, etc). So my client code looks like so:

    HashMap<String, String> vars = new HashMap<String, String>();
    vars.put("id", "123");

    String url = "http://example.com/foo/{id}";

    Foo foo = restTemplate.getForObject(url, Foo.class, vars);

When the look-up on the server side fails it returns a 404 along with some XML. I end up getting an UnmarshalException thrown as it cannot read the XML.

Caused by: javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"exception"). Expected elements are <{}foo>,<{}bar>

The body of the response is:

<exception>
    <message>Could not find a Foo for ID 123</message>
</exception>

How can I configure the RestTemplate so that RestTemplate.getForObject() returns null if a 404 happens?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.