标签:表单重复提交 微软 font 定义 param work invoke filter 控制
<package name="包名称" extends="抽象包名称">
<interceptors>
<interceptor name="拦截器名称" class="拦截器实现类">
<param name="参数名称">参数值</param>
</interceptor>
</interceptors>
</package>
<interceptor-stack name="拦截器栈名称">
<interceptor-ref name="拦截器名称">
<param name="参数名称">参数值</param>
</interceptor-ref>
</interceptor-stack>
注意:完全可以把拦截器栈当成一个更大的拦截器来处理,因此拦截器栈中,可以引用另一个拦截器栈;如果在<interceptor-ref…/>定义了拦截器参数,则会替换在<interceptor…/>中定义的参数值。
public interface Interceptor extends Serializable {
void init();
void destroy();
String intercept(ActionInvocation invocation) throws Exception;
}
? ?
? ?
标签:表单重复提交 微软 font 定义 param work invoke filter 控制
原文地址:http://www.cnblogs.com/li3807/p/6353871.html