spring mvc 拦截器

<bean class ="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" >
<property name ="interceptors" >
<list><bean class ="com.eightzero.admin.web.ControllerInterceptor" /></list>
</property>
</bean >

ControllerInterceptor extends HandlerInterceptorAdapter 

原文地址:https://www.cnblogs.com/c-abc/p/4552041.html