1、什么是拦截器
- Interceptor:拦截器,起到拦截Action的作用。
- Filter:过滤器,过滤从客户端向服务器发送的请求。
- Interceptor:拦截器,拦截是客户端对Action的访问。更细粒度化的拦截。(拦截Action中的具体的方法)。
- Struts2框架核心的功能都是依赖拦截器实现。
2、Struts2的执行流程
客户端向服务器发送一个Action的请求,执行核心过滤器(doFilter)方法。在这个方法中,调用executeAction()方法,在这个方法内部调用dispatcher.serviceAction();在这个方法内部创建一个Action代理,最终执行的是Action代理中的execute(),在代理中执行的execute方法中调用ActionInvocation的invoke方法。在这个方法内部递归执行一组拦截器(完成部分功能),如果没有下一个拦截器,就会执行目标Action,根据Action的返回的结果进行页面跳转。
3、自定义拦截器
3.1 编写拦截器类
- 编写一个类实现Interceptor接口或者继承AbstractInterceptor类。
/**
* 自定义的拦截器一
* @author xu
*
*/
public class InterceptorDemo1 extends AbstractInterceptor{
@Override
public String intercept(ActionInvocation invocation) throws Exception {
System.out.println("InterceptorDemo1执行了...");
String obj = invocation.invoke();
System.out.println("InterceptorDemo1执行结束了...");
return obj;
}
}
3.2 对拦截器进行配置
- 定义拦截器进行配置
<!-- 定义拦截器========== -->
<interceptors>
<interceptor name="interceptorDemo1" class="com.xu.web.interceptor.InterceptorDemo1"/>
<interceptor name="interceptorDemo2" class="com.xu.web.interceptor.InterceptorDemo2"/>
</interceptors>
<!--在哪个action中使用就在哪个action中引入,引入格式如下-->
<!--一旦引入自定义栈,默认拦截器栈的拦截器就不执行了,要手动添加-->
<interceptor-ref name="defaultStack"/>
<interceptor-ref name="interceptorDemo1"/>
<interceptor-ref name="interceptorDemo2"/>
- 定义一个拦截器栈的方式
<interceptors>
<interceptor name="interceptorDemo1" class="com.xu.web.interceptor.InterceptorDemo1"/>
<interceptor name="interceptorDemo2" class="com.xu.web.interceptor.InterceptorDemo2"/>
<!-- 定义拦截器栈 -->
<interceptor-stack name="myStack">
<interceptor-ref name="defaultStack"/>
<interceptor-ref name="interceptorDemo1"/>
<interceptor-ref name="interceptorDemo2"/>
</interceptor-stack>
</interceptors>
<!--在哪个action中使用就在哪个action中引入,引入格式如下-->
<interceptor-ref name="myStack"/>