soa三个角色:struts2自定义拦截器

来源:百度文库 编辑:中财网 时间:2024/04/27 16:19:01
 要自定义拦截器需要实现com.opensymphony.xwork2.interceptor.Interceptor接口: public class PermissionInterceptor implements Interceptor {    private static final long serialVersionUID = -5178310397732210602L;    public void destroy() {    }    public void init() {    }    public String intercept(ActionInvocation invocation) throws Exception {   System.out.println("进入拦截器"); if(session里存在用户){ String result = invocation.invoke(); }else{ return “logon”; } //System.out.println("返回值:"+ result); //return result;     } }                                               /WEB-INF/page/hello.jsp 因为struts2中如文件上传,数据验证,封装请求参数到action等功能都是由系统默认的defaultStack中的拦截器实现的,所以我们定义的拦截器需要引用系统默认的defaultStack,这样应用才可以使用struts2框架提供的众多功能。 如果希望包下的所有action都使用自定义的拦截器,可以通过把拦截器定义为默认拦截器。注意:每个包只能指定一个默认拦截器。另外,一旦我们为该包中的某个action显式指定了某个拦截器,则默认拦截器不会起作用。