티스토리 뷰

<!--

@ControllerAdvice 사용하기 위해서는 <mvc:annotation-driven/> 사용해야 하는데 

RequestMappingHandlerAdapter 를 customizing 한 경우 annotation-driven 설정을 사용할 수 없으므로 

ControllerAdvice 가 필요한 ExceptionHandlerExceptionResolver 를 따로 등록해준다.

 -->

<bean id="exceptionHandlerExceptionResolver" class="org.springframework.web.servlet.mvc.method.annotation.ExceptionHandlerExceptionResolver" />


@ControllerAdvice Example 참고

https://www.mkyong.com/spring-mvc/spring-mvc-exceptionhandler-example/

댓글