1、客户端向Servlet容器(如Tomcat)提交一个请求
4、如果ActionMapper决定需要调用某个Action,核心控制器把控制权委派给ActionProxy (备注:JSP请求无需调用Action)
5、ActionProxy通过Configuration Manager询问框架的配置文件(struts.xml),找到需调用的Action类
6、ActionProxy创建一个ActionInvocation的实例
7、 ActionInvocation负责调用Action,在此之前会依次调用所有配置的拦截器
8、Action执行完毕,ActionInvocation负责根据结果码字符串在struts.xml的配置中找到对应的返回结果
9、拦截器被再次执行
10、过滤器被再次执行
public class MyTimerInterceptor extends AbstractInterceptor{ public String intercept(ActionInvocation invocation) throws Exception { //预处理工作 long startTime = System.currentTimeMillis(); //执行后续拦截器或Action String result = invocation.invoke(); //后续处理工作 long execTime = System.currentTimeMillis() - startTime; System.out.println("The interval time is "+execTime+" ms"); //返回结果字符串 return result; } }
</pre><pre name="code" class="java">
<package name="packName" extends="struts-default" namespace="/manage"> <interceptors> <!-- 定义拦截器 --> <interceptor name="interceptorName" class="interceptorClass" /> <!-- 定义拦截器栈 --> <interceptor-stack name="interceptorStackName"> <!--指定引用的拦截器--> <interceptor-ref name="interceptorName|interceptorStackName" /> </interceptor-stack> </interceptors> <!--定义默认的拦截器引用--> <default-interceptor-ref name="interceptorName|interceptorStackName" /> <action name="actionName" class="actionClass"> <!—为Action指定拦截器引用--> <interceptor-ref name="interceptorName|interceptorStackName" /> <!--省略其他配置--> </action> </package>实现Interceptor接口
原文地址:http://blog.csdn.net/s2940086379/article/details/46038563