码迷,mamicode.com
首页 > 其他好文 > 详细

自定义拦截器

时间:2014-06-06 16:24:51      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

 

bubuko.com,布布扣
 1  2     1、编写一个类,实现com.opensymphony.xwork2.interceptor.Interceptor
 3     2、主要实现public String intercept(ActionInvocation invocation) throws Exception{}方法
 4         该方法的返回值就相当于动作的返回值
 5         如果调用了String result = invocation.invoke();得到了动作类的返回的值。
 6     public String intercept(ActionInvocation invocation) throws Exception {
 7         //判断用户是否登录
 8         HttpSession session = ServletActionContext.getRequest().getSession();
 9         Object obj = session.getAttribute("user");
10         if(obj==null){
11             return "login";
12         }else{
13             return invocation.invoke();//调用动作方法
14         }
15     }
16     3、拦截器定义好后,一定要在配置文件中进行注册:
17         <interceptors> 只是定义拦截器,并没有起作用 
18             <interceptor name="permissionInterceptor" class="cn.itcast.interceptor.PermissionInterceptor"></interceptor>
19         </interceptors>
20     4、配置文件中的动作,要通过
21         <interceptor-ref name="permissionInterceptor"></interceptor-ref>使用该拦截器
22     注意:一旦动作中使用了自定义的拦截器,那么默认的就不起作用了。一般应该采用如下的做法:
23         <interceptor-ref name="defaultStack"></interceptor-ref>
24         <interceptor-ref name="permissionInterceptor"></interceptor-ref>
25         
26     多个动作类都要使用的话,可以通过package来进行组合。
bubuko.com,布布扣

 

自定义拦截器,布布扣,bubuko.com

自定义拦截器

标签:c   style   class   blog   code   java   

原文地址:http://www.cnblogs.com/friends-wf/p/3766425.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!