기존에 컨트롤러에 함께 있던 @ExceptionHandler를 ExControllerAdvice로 분리한다.
ExControllerAdvice에는 @RestControllerAdvice를 적용한다.
실행하면 이전과 똑같이 동작하는 걸 알 수 있다.
@ControllerAdvice
대상으로 지정한 여러 컨트롤러에 @ExceptionHandler, @InitBinder 기능을 부여한다.
예시처럼 대상을 지정하지 않으면 모든 컨트롤러에 적용된다.
@RestControllerAdvice
@ControllerAdvice 기능에 @ResponseBody가 추가되어 있다.
대상 컨트롤러 지정
// @RestController가 붙은 모든 컨트롤러@ControllerAdvice(annotations =RestController.class)publicclassExampleAdvice1 {}// 특정 패키지에 있는 모든 컨트롤러@ControllerAdvice("org.example.controllers")publicclassExampleAdvice2 {}// 명시한 클래스만 적용@ControllerAdvice(assignableTypes = {ControllerInterface.class,AbstractController.class})publicclassExampleAdvice3 {}