Search

Spring Interceptor Using Annotation Tutorial / Example

If you are using annotated Spring controllers, the only change that you need to do to the previous interceptor example is the configuration. In the Spring bean configuration file instead of usingBeanNameUrlHandlerMapping or any other handler mapping use DefaultAnnotationHandlerMapping. The configuration file is shown below.
<?xml version="0" encoding="UTF-8"?>

<bean id="viewResolver" class="org.springframework.web.servlet.view. InternalResourceViewResolver" p:prefix="/WEB-INF/jsp/"p:suffix=".jsp" />

<bean class="org.springframework.web.servlet.mvc.annotation. DefaultAnnotationHandlerMapping" p:interceptors-ref="loggerInterceptor" />

<context:component-scan base-package="com.vaannila.web" />

<bean id="loggerInterceptor"class="com.vaannila.interceptor.LoggerInterceptor" />

<bean id="userService" class="com.vaannila.service.UserServiceImpl" />

</beans>

No comments:

Post a Comment