实现xwork包下的Interceptor接口
destroy() {} 销毁时调用
//setter...getter...
System.out.println("init()...");
System.out.println( hello );
}
public void destroy() {
System.out.println("destroy()...");
}
//invoke()将判断是否还有下一个拦截器,有就执行下一个拦截器,没有则开始执行被拦截的类
String result = invocation.invoke();
System.out.println("finish1...");
return result;
}
第二种方式:
String result = invocation.invoke();
System.out.println("finish2...");
return result;
}
}
----------------------------
2. struts.xml 配置
struts采用包名把不同的action区分开,相同类似功能的放在一个包里
包之间是可以有继承关系的,
extends="struts-default" 相当于把struts2-core-2.0.11.jar下的struts-default.xml的东西给继承过来了
其中包括N多的拦截器
<package name="包名" extends="struts-default">
定义拦截器
<interceptors>
<interceptor name="myInterceptor" class="com....interceptor.MyInterceptor"/>
name对应到拦截器类中的字段属性,该属性需要有set、get方法
当启动拦截器时这项配置将会吧world作为值赋给私有成员hello
也可以在引用拦截器时改变这个值
<param name="hello">world</param>
</interceptor>
</interceptors>
<interceptors-stack name="myInterceptorStack">
<interceptor-ref name="myInterceptor" />
<interceptor-ref name="myInterceptor2" />
<interceptor-ref name="defaultStack" /> defaultStack---Struts2默认的拦截器
</interceptors-stack>
<interceptor-ref name="myInterceptor" />
<interceptor-ref name="myInterceptorStack" />
</interceptors-stack>
<result name="...">...</result>
...
引用拦截器
<interceptor-ref name="myInterceptor" />
<param name="hello">welcome</param>
</interceptor-ref>
</action>
他会自动的把默认的拦截器附加到每一个Action中去
在一个包中,可以有0或1个默认的拦截器栈
如果在一个<action>中手动的指定一个拦截器,默认的拦截器就不会再自动的加到这个action里
只能通过手工的方式再导入一下
<default-interceptor-ref name="defaultStack" />
</package>
</struts>
如果调用多个拦截器,执行顺序是怎样的?
<interceptor name="myInterceptor" class="..."></interceptor>
<interceptor name="myInterceptor2" class="..."></interceptor>
</interceptors>
<interceptor-ref name="myInterceptor" />
<interceptor-ref name="myInterceptor2" />
</interceptors-stack>
注:拦截器会在调用invoke()方法调用之前和之后都会执行
|_________拦截器2 2 中invoke方法后的语句
|__________
|
invoke() 执行invoke()方法
__________|
|
________拦截器2 2 中invoke方法后的语句
|
拦截器1 1 中invoke方法后的语句
第三中方式:指定拦截的方法
--------------------------------------------------
继承MethodFilterInterceptor
public void init() {
System.out.println("init3");
}
//需要重写一下doIntercept
@Override
public String doIntercept(ActionInvocation invocation) throws Exception {
String result = invocation.invoke();
System.out.println("finish3...");
return result;
}
}
MethodFilterInterceptor中包含两个protected的属性
Set excludeMethods : 排除谁
<interceptors>
<interceptor name="myInterceptor3" class="..."></interceptor>
</interceptors>
<action ...>
<result ...>...</result>
...
<interceptor-ref name="myInterceptor3" >
<param name="includeMethods">execute,test</param>
排除 不拦截的方法 多个用逗号分开
<param name="excludeMethods">execute</param>
</interceptor-ref>
<interceptor-ref name="defaulteStack" />
注:
================
补充
================
Java的过滤器 Filer:
-------------------------------
init( FilterConfig filterConfig ) {} 初始化时调用
destroy() {} 过滤器销毁时调用
过滤器链
doFilter( ServletRequest request, ServletResponse response, FilterChain chain ) {}
Strust2的监听器
-------------------------------
PreResultListener接口
void beforeResult(ActionInvocation invocation, String resultCode) {}
--------------
建立包:listener
建立类:MyListener 继承 PreResultListener
重写beforeResult方法
// resultCode为 action中业务逻辑方法的返回值
System.out.println("result=" + resultCode);
}
把监听器注册到拦截器中
public void init() {
System.out.println("init3");
}
public String doIntercept(ActionInvocation invocation) throws Exception {
invocation.addPreResultListener( new MyListener() );
String result = invocation.invoke();
System.out.println("finish3...");
return result;
}
}