ControllerAdvice
-
[SpringBoot] 예외처리Framework/Spring 2020. 6. 22. 00:01
스프링 부트에서 에러 핸들링을 할 때 다양한 방법을 쓸 수 있다. 그 중 스프링 3.2부터 새로 생긴 annotation인 @ControllerAdvice가 있다. 그전부터 스프링을 썼다면 @ExceptionHandler를 사용할 수 있다. @ExceptionHandler가 특정 클래스에 대한 예외처리를 한 것이었다면 @ControllerAdvice는 전역적으로 모든 컨트롤러에 대하여 처리를 할 수 있다. 참고 : https://www.baeldung.com/exception-handling-for-rest-with-spring