스프링 3.0 사용시
SimpleMappingExceptionResolver 를 환경 설정으로 사용한다면 기존의 default 설정인
AnnotationMethodHandlerExceptionResolver 이 작동되지 않는데
이때에는 order 속성을 두어 셋팅한다.
<bean class="org.springframework.web.servlet.mvc.annotation.AnnotationMethodHandlerExceptionResolver">
<property name="order" value="1" />
</bean>
<bean class="org.springframework.web.servlet.handler.SimpleMappingExceptionResolver">
<property name="order" value="2" />
</bean>
'spring' 카테고리의 다른 글
AnnotationMethodHandlerExceptionResolver (0) | 2012.10.16 |
---|---|
Spring AOP - @Aspect 애노테이션 (<aop:aspectj-autoproxy proxy-target-class="true" />) (0) | 2012.10.16 |
<context:component-scan />의 사용법 (1) | 2012.10.16 |
어노테이션 기반 설정 (0) | 2012.10.16 |
XStream (0) | 2012.03.15 |