struts攔截器使用
一 方法調用之後使用的攔截器 實現interceptor 接口
攔截器 一定是線程安全的
public interface Interceptor extends Serializable
{
void destroy();
void init();
String intercept(ActionInvocation invocation) throws Exception;
}
實現方法intercept
example
import com
{
public String intercept(ActionInvocation invocation) throws Exception
{
MyAction action = (MyAction)invocation
action
return invocation
}
}
<struts>
<interceptors>
<interceptor name=
<interceptor name=
</package>
二 要實現在之前 調用 就實現 PreResultListener的接口
From:http://tw.wingwit.com/Article/program/Java/ky/201311/28827.html