struts2 拦截器1

action invoke前会调用,invoke后会调用

public class FirstInterceptor extends AbstractInterceptor{

    @Override
public String intercept(ActionInvocation actionInvocation) throws Exception {
String result = actionInvocation.invoke();
return result;
} }
        <interceptors>
<interceptor name="firstInter" class="com.wolfgang.interceptor.FirstInterceptor"></interceptor>
</interceptors>
        <action name="testOGNL" class="com.wolfgang.action.TestOGNL">
<interceptor-ref name="firstInter"></interceptor-ref>
<result>/OGNL/static.jsp</result>
</action>
上一篇:MAC地址表、ARP缓存表、路由表及交换机、路由器基本原理


下一篇:MyBatis学习总结(三)——优化MyBatis配置文件中的配置