/**
* Spring boot에서 셧다운 이벤트 발생시 리스너 샘플
*
* @author
*/
@Component
public class StopListener implements ApplicationListener<ContextClosedEvent> {
@Override
public void onApplicationEvent(final ContextClosedEvent event) {
System.out.println("셧다운 호출");
}
}
'JAVA > Spring 일반' 카테고리의 다른 글
Spring restTemplate + OkHttp(for http 2 request) (0) | 2019.09.19 |
---|---|
java spring mysql에서 쿼리 로그 남기기(with log4jdbc) (0) | 2019.09.06 |
Spring API 개발시 예외(에러) 처리 방법 메모 (0) | 2019.05.28 |
spring MVC에서 리다이렉트 요청인지 체크하는 메소드 (0) | 2019.02.06 |
Spring RestTemplate 샘플 : 타임아웃 및 pool설정 등의 튜닝버전 (0) | 2018.12.08 |