我正在调用一个返回 XML 的 REST 服务,并使用Jaxb2Marshaller
它来编组我的类(例如Foo
,Bar
等)。所以我的客户端代码如下所示:
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);
当服务器端的查找失败时,它会返回 404 以及一些 XML。我最终被UnmarshalException
抛出,因为它无法读取 XML。
Caused by: javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"exception"). Expected elements are <{}foo>,<{}bar>
响应的正文是:
<exception>
<message>Could not find a Foo for ID 123</message>
</exception>
如果发生 404 ,我该如何配置RestTemplate
以便RestTemplate.getForObject()
返回?null