Corrections implementation.

This commit is contained in:
jacques
2018-05-23 08:28:37 -04:00
parent 9a04bf2c2c
commit 1aaa12eca6
3 changed files with 36 additions and 50 deletions
@@ -1,8 +1,6 @@
package org.baeldung.web.handler;
import org.baeldung.web.exception.NotFoundException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.http.HttpStatus;
import org.springframework.http.client.ClientHttpResponse;
import org.springframework.stereotype.Component;
@@ -11,13 +9,13 @@ import org.springframework.web.client.ResponseErrorHandler;
import java.io.IOException;
@Component
public class RestTemplateResponseErrorHandler implements ResponseErrorHandler {
private static final Logger LOGGER = LoggerFactory.getLogger(RestTemplateResponseErrorHandler.class);
public class RestTemplateResponseErrorHandler
implements ResponseErrorHandler {
@Override
public boolean hasError(ClientHttpResponse httpResponse) throws IOException {
public boolean hasError(ClientHttpResponse httpResponse)
throws IOException {
return (httpResponse
.getStatusCode()
.series() == HttpStatus.Series.CLIENT_ERROR || httpResponse
@@ -26,28 +24,20 @@ public class RestTemplateResponseErrorHandler implements ResponseErrorHandler {
}
@Override
public void handleError(ClientHttpResponse httpResponse) throws IOException {
public void handleError(ClientHttpResponse httpResponse)
throws IOException {
if (httpResponse
.getStatusCode()
.series() == HttpStatus.Series.SERVER_ERROR) {
this.handleServerError(httpResponse);
//Handle SERVER_ERROR
} else if (httpResponse
.getStatusCode()
.series() == HttpStatus.Series.CLIENT_ERROR) {
this.handleClientError(httpResponse);
}
}
private void handleServerError(ClientHttpResponse httpResponse) {
//Handle Server specific errors
}
private void handleClientError(ClientHttpResponse httpResponse) throws IOException {
//Handle Client specific errors
if (httpResponse.getStatusCode() == HttpStatus.NOT_FOUND) {
//Log details here...
LOGGER.info("Throwing NotFoundException...");
throw new NotFoundException();
//Handle CLIENT_ERROR
if (httpResponse.getStatusCode() == HttpStatus.NOT_FOUND) {
throw new NotFoundException();
}
}
}
}
@@ -7,17 +7,19 @@ import org.springframework.boot.web.client.RestTemplateBuilder;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
@Service
public class BarConsumerService {
private RestTemplate restTemplate;
@Autowired RestTemplateBuilder restTemplateBuilder;
public Bar fetchBarById(String barId) {
@Autowired
public BarConsumerService(RestTemplateBuilder restTemplateBuilder) {
RestTemplate restTemplate = restTemplateBuilder
.errorHandler(new RestTemplateResponseErrorHandler())
.build();
}
public Bar fetchBarById(String barId) {
return restTemplate.getForObject("/bars/4242", Bar.class);
}