Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Force Spring RestTemplate to use XmlConverter

We are integrating with a third party that is sending xml with the content-type header as text/html. We were planning on using Spring's RestTemplate to map it to classes we've generated from xsds, but the RestTemplate fails to find an appropriate converter to use for the content. The third party refuses to fix the content-type because it might break other partners' integration.

Is there a way with Spring's RestTemplate to force it to use a specific converter? We are basically just doing the following:

RestTemplate restTemplate = new RestTemplate();
XmlClass xmlClass = restTemplate.getForObject("http://example.com/", XmlClass.class);

And get the following exception:

org.springframework.web.client.RestClientException: Could not extract response: no suitable HttpMessageConverter found for response type [XmlClass] and content type [text/html;charset=ISO-8859-1] at org.springframework.web.client.HttpMessageConverterExtractor.extractData(HttpMessageConverterExtractor.java:84)

like image 692
Nathanial Avatar asked Oct 23 '12 20:10

Nathanial


People also ask

Is RestTemplate getting deprecated?

RestTemplate will still be used. But in some cases, the non-blocking approach uses much fewer system resources compared to the blocking one.

Does RestTemplate use Jackson?

The RestTemplate uses the Jackson to create a Jackson java bean from the provided JSON. This bean is returned to the DataProvider. The DataProvider maps the Jackson bean to our own java bean, the data bean, and returns this to the calling application.

How do you use RestTemplate exchange for post method?

Consuming POST API by using RestTemplate - exchange() method Assume this URL http://localhost:8080/products returns the response shown below, we are going to consume this API response by using the Rest Template. Autowired the Rest Template Object. Use the HttpHeaders to set the Request Headers.


2 Answers

The solution we implemented was to add a Jaxb2RootElementHttpMessageConverter with MediaType.TEXT_HTML to the RestTemplate HttpMessageConverters. It's not ideal since it creates a redundant jaxb message converter but it works.

RestTemplate restTemplate = new RestTemplate();
List<HttpMessageConverter<?>> messageConverters = new ArrayList<HttpMessageConverter<?>>();
Jaxb2RootElementHttpMessageConverter jaxbMessageConverter = new Jaxb2RootElementHttpMessageConverter();
List<MediaType> mediaTypes = new ArrayList<MediaType>();
mediaTypes.add(MediaType.TEXT_HTML);
jaxbMessageConverter.setSupportedMediaTypes(mediaTypes);
messageConverters.add(jaxbMessageConverter);
restTemplate.setMessageConverters(messageConverters);
like image 113
Nathanial Avatar answered Sep 21 '22 05:09

Nathanial


I did not see an example posted of how to actually do this with a custom interceptor, so here is one for reference sake:

public class MyXmlInterceptor implements ClientHttpRequestInterceptor {

@Override
public ClientHttpResponse intercept(HttpRequest request, byte[] body, ClientHttpRequestExecution execution) throws IOException {
    ClientHttpResponse response = execution.execute(request, body);
    HttpHeaders headers = response.getHeaders();

    // you'd want to check if the value needs to be changed
    if (headers.containsKey("Content-Type")) {
        headers.remove("Content-Type");
    }

    headers.add("Content-Type", "application/xml");

    return response;
}

Then, you would need to add the interceptor to your RestTemplate object:

RestTemplate t = new RestTemplate();
t.getInterceptors().add(new MyXmlInterceptor());
like image 38
Thomas Ehardt Avatar answered Sep 17 '22 05:09

Thomas Ehardt