@ControllerAdvice
스프링 MVC 2 - API 예외 처리 - @ControllerAdvice
스프링 MVC 2 - API 예외 처리 - @ControllerAdvice
2022.10.04API 예외 처리 - @ControllerAdvice @ExceptionHandler를 사용해서 예외를 깔끔하게 처리할 수 있게 되었지만, 정상 코드와 예외 처리 코드가 하나의 컨트롤러에 섞여 있다. @ControllerAdvice 또는 @RestControllerAdvice를 사용하면 둘을 분리할 수 있다. ExControllerAdvice ApiExceptionV2Controller 코드에 있는 @ExceptionHandler 모두 제거 Postman 실행 http://localhost:8080/api2/members/bad http://localhost:8080/api2/members/user-ex http://localhost:8080/api2/members/ex @ControllerAdvice ..