Parse custom error response in a Spring ResponseErrorHandler with HttpMessageConverterExtractor
| Jun 04, 2019Considering the case when a call to a web service with Spring RestTemplate return an error response and we want to handle this error as a Java object. RestTemplate error responses can be handled implementing the class ResponseErrorHandler. Considering a JSON response error like the following lets see how to transform it in a This […]
Read More →