拦截器
作用:拦截控制器方法
三个阶段:
preHandle 执行控制器方法之前
postHandle 执行控制器方法之后
afterCompletion 控制执行完成之后,会返回一个modelandview对象,此方法在render(渲染之后)被调用
配置步骤:
1.创建拦截器对象
1.1 实现HandlerInterceptor接口,并重写该接口的三个默认方法
preHandle
postHandle
afterCompletion
1.2 继承HandlerInterceptorAdapter类,并重写上述的三个方法,已经弃用,不推荐
2.在ioc容器中注册拦截器对象
三种配置方式
2.1 拦截全部请求
<mvc:interceptors>
<bean class="firstInterceptor">
</mvc:interceptors>
2.2拦截全部请求
<mvc:interceptors>
<ref bean = "firstInterceptor">
</mvc:interceptors>
前提是使用注解提前将拦截器接口的实现类注册到ioc容器中
2.3拦截指定的路径
<mvc:interceptors>
<mvc:interceptor>
<mvc:mapping path="/**"/>
<mvc:exclude-mapping path="/"/>
<ref bean="firstInterceptor"></ref>
</mvc:interceptor>
</mvc:interceptors>
<mvc:mapping path="/**"/> 表示拦截“/”一下的任意级的url 如/a ,/a/a/a/a 都会被拦截
<mvc:exclude-mapping path="/"/> 配置不被拦截的url
<ref bean="firstInterceptor"></ref> 引入拦截器实现类
放行与不放行
不放行只能在发生在preHandle阶段
当preHandle的返回值是false的时候,不放行,返回值是true的时候放行
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
System.out.println("preHandle works");
return true;
}
原创文章,作者:bd101bd101,如若转载,请注明出处:https://blog.ytso.com/269481.html