拦截器

拦截器_第1张图片


针对当前package下的所有的action

给Action定义一个拦截器,  设置拦截器的栈 (里面可以设置对个,要有个默认拦截器)   




拦截器_第2张图片


引用方法拦截器   excludeMethods 不包含的方法     includeMethods包含的方法    因为设置拦截器默认就会不存在   最后要写上默认的拦截器


全局拦截器:  继承AbstractInterceptor     

 return invocation.invoke()   //代表放行

Action拦截器:继承 MethodFilterInterceptor

你可能感兴趣的:(拦截器)