标签:
方法一:实现Interceptor接口(一般不用)
继承实现:
-void init();
-void destroy();
-String intercept(ActionInvocation ai) throws Exception :
实现拦截器功能
利用ActionInvocation参数获取Action状态
返回result字符串作为逻辑视图
方法二:继承AbstractInterceptor类
-提供了Init() destroy()的空实现
-只需要实现intercept方法
3.案例实现:统计action执行的时间长短
步奏:1.编写自定义的Interceptor类,继承AbstractInterceptor类,实现interceptor方法
2.在struts.xml文件中注册interceptor
3.在struts.xml中的action引用interceptor
标签:
原文地址:http://www.cnblogs.com/heyucool/p/5046905.html