티스토리 뷰
반응형
Api 통신 작업을 하다가, Timeout Exception을 catch하여 처리해야 하는 상황이 있습니다.
try{
//api 통신
restTemplate.postForEntity(...)
} catch (HttpStatusCodeException e) {
Result result = ResultCode.builder().memberStatusCode(....).build();
result.setResultCode(ServiceError.COMMON_SYSTEM_ERROR.getCode());
result.setResultMessage(e.getResponseBodyAsString());
return result;
}catch (RestClientException re){
if(re.getRootCause() instanceof SocketTimeoutException
|| re.getRootCause() instanceof ConnectTimeoutException){
log.error("[confirmPennyTest] socket || connect timeout error = {}", re);
}
log.error(" timeout error = {}", re);
throw new ServiceException(ServiceError.COMMON_NETWORK_ERROR);
} catch (Exception e) {
e.printStackTrace();
Result result = ResultCode.builder().memberStatusCode(....).build();
result.setResultCode(ServiceError.COMMON_SYSTEM_ERROR.getCode());
result.setResultMessage(e.getMessage());
return result;
}
먼저 HttpStatusCodeException 으로 api 통신시 4xx, 5xx 코드들에 대한 처리를 해줍니다.
그리고 그외 RestClientException으로
re.getRootCause() instanceof SocketTimeoutException || re.getRootCause() instanceof ConnectTimeoutException
문을 조건문을 주어 타임아웃 일 때 catch하여 Exception 처리를 해주면 됩니다.
반응형
'jvm언어관련 > java' 카테고리의 다른 글
javax.net.ssl.SSLHandshakeException: Received fatal alert: handshake_failure (0) | 2019.07.23 |
---|---|
@NotEmpty @NotNull @NotBlank (0) | 2019.06.12 |
이것이 자바다 -chapter05 : 참조 타입 (0) | 2019.04.21 |
이것이 자바다 -chapter04 : 조건문과 반복문 (0) | 2019.03.30 |
이것이 자바다 -chapter03 : 연산 (0) | 2019.03.30 |
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- visual studio code
- gradle
- 뱅크샐러드
- 이것이 자바다
- 뱅셀 유전자
- spring-boot-starter-data-redis
- 뱅크샐러드 유전자
- update query multi row
- update query set multiple
- vue.js
- springboot https
- update query
- 싱글턴
- 몽고DB 완벽가이드
- 슬랙봇
- 이펙티브자바
- 슬랙 /
- MSSQL
- 업데이트 쿼리
- update query mutiple row
- update set multi
- Slack
- SpringBoot
- 슬랙
- 다중 업데이트
- 그레이들
- java
- effectivejava
- multiple row update
- update set multiple
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함