1. 程式人生 > >攔截器配置

攔截器配置

方法 cati trac row color tee 實現 oca blog

1 // 實現Interceptor接口 或 實現 AbstractInterceptor類
2 //AbstractInterceptor 實現了Interceptor接口 主要區別在於空實現了init()、//destory()  方法,由於此方法一般不使用,所以避免了不必要的開銷。
3 // 一般選擇使用繼承 AbstractInterceptor來創建攔截器
4 public abstract class AbstractInterceptor{
5 public void init(){}
6 public void destory(){}
7 public abstract String intercept(ActionInvocation invocation) throw
Exception; 8 }

<intercepteer name="intercepter" class=interceptionClass"">
<param name="paramName">paramValue</param>

</intercepter>

攔截器配置