Struts2的拦截器

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"/>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值