java Exception 발생 재시도
- Exception 발생시 특정 횟수만큼 재시도를 진행하고자 한다. - 저같은 경우 주로 다른 애플리케이션을 API로 통신시 네트워크등의 이슈로 문제가 발생시 재시도를 진행하고자 할때 사용한다. - 방법은 두가지가 존재한다. spring에서 지원하는 spring-retry 와 net.jodah.failsafe 의 RetryPolicy이다. ● git 주소 technology-team / failsafe-retry — Bitbucket ● @Retryable 어노테이션 1. dependencies 설정 - spring-retry 사용 시 aspectjweaver 가 필요하다. implementation 'org.springframework.boot:spring-boot-starter' implementa..
라이브러리
2021. 8. 30. 11:17
공지사항