Struts2中拦截器执行顺序(正向、反向执行)

直接上图



struts.xml核心配置文件中interceptor的注册和调用:

<struts>
<package name="default" namespace="/" extends="struts-default">

<interceptors>
<interceptor name="myTimer" class="com.testaction.TimerIntercept"/>
<interceptor name="testInterceptor" class="com.testaction.TestInterceptor"/>
</interceptors>

<action name="timer" class="com.testaction.TimerAction">
<result>/success.jsp</result>
<interceptor-ref name="myTimer"/>
<interceptor-ref name="testInterceptor"/>
</action>
</package>
<constant name="struts.action.extension" value="action,do,html"></constant>
</struts>


Action类:

package com.testaction;


import com.opensymphony.xwork2.ActionSupport;
public class TimerAction extends ActionSupport{

@Override
public String execute() throws Exception {
for(int i=0;i<10;i++){
System.out.println("I LOVE YOU");
}
return SUCCESS;
}

}


自定义的两个拦截器类:

1、

package com.testaction;


import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.AbstractInterceptor;

public class TimerIntercept extends AbstractInterceptor{

@Override
public String intercept(ActionInvocation invocation) throws Exception {
long start=System.currentTimeMillis();
System.out.println("000000000000000");
System.out.println("11111111111111");
String result=invocation.invoke();
long end=System.currentTimeMillis();
System.out.println("222222222222222");
System.out.println("3333333333333333");
System.out.println("执行Action所用时间:"+(end-start)+"ms");
return result;
}

}


2、

package com.testaction;


import com.opensymphony.xwork2.ActionInvocation;
import com.opensymphony.xwork2.interceptor.AbstractInterceptor;

public class TestInterceptor extends AbstractInterceptor{

@Override
public String intercept(ActionInvocation invocation) throws Exception {
System.out.println("/");
System.out.println("/");
System.out.println("############################");
System.out.println("############################");
String result=invocation.invoke();
System.out.println("*****************************");
System.out.println("*****************************");
System.out.println("=================================");
System.out.println("================================");
return result;
}
}


控制台打印输出结果:

000000000000000
11111111111111
/
/
############################
############################
I LOVE YOU
I LOVE YOU
I LOVE YOU
I LOVE YOU
I LOVE YOU
I LOVE YOU
I LOVE YOU
I LOVE YOU
I LOVE YOU
I LOVE YOU
*****************************
*****************************
=================================
================================
222222222222222
3333333333333333
执行Action所用时间:495ms

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值