Struts2的interceptor实现权限管理

这是以前写过的一个利用struts2的interceptor进行权限管理的笔记,以前是放电脑上的,今天偶然看到了,就贴出来,希望能对有需要的人有点帮助,同时自己以后需要看的时候也会更加方便点!

说明一点:这个interceptor里面的代码是根据我特定的项目写的,所以请有需要的人不要盲目的照搬!

自己写一个interceptor,该interceptor继承interceptor接口,实现其中的intercept方法;然后在struts.xml

中进行配置,并把该interceptor置于默认的interceptor中,注意,这里在设置默认的intercept的时候

一定要加上原来的intercept,否则原来的就不可以用了,就不能用struts2了,具体来说是这样:

Xml代码

 
 
  1.     
  2.         
  3.         
  4.             
  5.             
  6.         
  7.     
  8.     

 

Java代码

 
 
  1. @Override    
  2.     public String intercept(ActionInvocation invoke) throws Exception {     
  3.         // TODO Auto-generated method stub     
  4.         HttpSession session  = ServletActionContext.getRequest().getSession();     
  5.         ApplicationContext context = Util.getContext(ServletActionContext.getServletContext());     
  6.         PriorityService priorityService = context.getBean(PriorityService.class);     
  7.              
  8.         String actionName = invoke.getProxy().getActionName();     
  9.         String methodName = invoke.getProxy().getMethod();     
  10.         if ("execute".equals(methodName))      
  11.             methodName = "index";     
  12.         int index = actionName.indexOf("/");     
  13.         String name = actionName.substring(0, index);     
  14.              
  15.         Priority priority = priorityService.find(name, methodName);     
  16.         Object obj = session.getAttribute("user");     
  17.         if (obj != null) {     
  18.             User currentUser = (User) obj;     
  19.                  
  20.             ModuleService moduleService = context.getBean(ModuleService.class);     
  21.             Module module = moduleService.findByUrl(name+"/"+methodName);     
  22.             if (module != null) {     
  23.                 SystemDiaryService sdService = context.getBean(SystemDiaryService.class);     
  24.                 SystemDiary diary = new SystemDiary();     
  25.                 diary.setOperator(currentUser);     
  26.                 diary.setOperateModule(module.getName());     
  27.                 sdService.add(diary);     
  28.             }     
  29.                  
  30.             if (priority != null) {     
  31.                 boolean hasPermission = currentUser.hasPermission(priority);     
  32.                      
  33.                 if (!hasPermission) {     
  34.                     return "forbidden";     
  35.                 }     
  36.             }     
  37.         }     
  38. //      System.out.println("name = "+name + "**actionName = "+actionName+"*methodName = "+methodName);     
  39.     
  40.         String result = invoke.invoke();     
  41.         return result;     
  42.     }  

网站名称:Struts2的interceptor实现权限管理
当前地址:http://www.shufengxianlan.com/qtweb/news39/439289.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联