Spring 에서Global Error, Exception handling하는 방법 방법 1 – 컨트롤러 수준 @ExceptionHandler 첫 번째 방법은 @Controller 레벨 에서 작동합니다. 예외를 처리하는 메소드를 정의하고 @ExceptionHandler로 어노테이션을 달 것입니다 . public class FooController{ //... @ExceptionHandler({ CustomException1.class, CustomException2.class }) public void handleException() { // } } 이 접근 방식에는 큰 단점 이 있습니다. @ExceptionHandler 어노테이션이있는 메소드는 전체 애플리케이션 이 아니라 특정 컨트롤러에 대해서만 활성..