-
Notifications
You must be signed in to change notification settings - Fork 3
Springboot
Delf-Lee edited this page Aug 1, 2019
·
9 revisions
- 각종 서버 관련 Metric 제공
- https://supawer0728.github.io/2018/05/12/spring-actuator/
- https://jeong-pro.tistory.com/160
- https://github.com/cheese10yun/blog-sample/blob/master/actuator/README.md
- URL로 enum을 받을 때 소문자를 인식하지 못하는 문제
- https://docs.spring.io/spring/docs/4.3.12.RELEASE/spring-framework-reference/htmlsingle/#mvc-ann-exceptionhandler
- 컨트롤러 내 메서드에 선언하여 사용하며, 감지할 예외를 명시해야한다.
- 명시된 예외가 발생 시, 정의한 메서드가 실행되어 예외 상황에 대한 적절한 응답을 보낼 수 있다.
- 예외 처리 로직을 분리할 수 있고, 좀 더 깔끔하게 세분화 가능
- 예) https://jsonobject.tistory.com/387
- https://docs.spring.io/spring/docs/4.3.12.RELEASE/spring-framework-reference/htmlsingle/#mvc-ann-controller-advice
- 정의된 컨트롤러 클래스나 패키지에서 발생한 예외를 인터셉트한다.
- 공통된 예외 로직이 있다면 통합해서 정의가 가능하다.
- 예) https://lemontia.tistory.com/410