溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Struts2中怎么利用interceptor實現(xiàn)權(quán)限管理

發(fā)布時間:2021-08-06 15:55:21 來源:億速云 閱讀:110 作者:Leah 欄目:編程語言

Struts2中怎么利用interceptor實現(xiàn)權(quán)限管理,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。

Xml代碼

<interceptors>        <interceptor name="authentication" class="com.tiantian.tiantian.web.interceptor.AuthenticationInterceptor"></interceptor>        <interceptor-stack name="myInterceptorStack">            <interceptor-ref name="authentication"></interceptor-ref>            <interceptor-ref name="defaultStack"></interceptor-ref>        </interceptor-stack>    </interceptors>    <default-interceptor-ref name="myInterceptorStack"/>

Java代碼

@Override        public String intercept(ActionInvocation invoke) throws Exception {             // TODO Auto-generated method stub             HttpSession session  = ServletActionContext.getRequest().getSession();             ApplicationContext context = Util.getContext(ServletActionContext.getServletContext());             PriorityService priorityService = context.getBean(PriorityService.class);                          String actionName = invoke.getProxy().getActionName();             String methodName = invoke.getProxy().getMethod();             if ("execute".equals(methodName))                  methodName = "index";             int index = actionName.indexOf("/");             String name = actionName.substring(0, index);                          Priority priority = priorityService.find(name, methodName);             Object obj = session.getAttribute("user");             if (obj != null) {                 User currentUser = (User) obj;                                  ModuleService moduleService = context.getBean(ModuleService.class);                 Module module = moduleService.findByUrl(name+"/"+methodName);                 if (module != null) {                     SystemDiaryService sdService = context.getBean(SystemDiaryService.class);                     SystemDiary diary = new SystemDiary();                     diary.setOperator(currentUser);                     diary.setOperateModule(module.getName());                     sdService.add(diary);                 }                                  if (priority != null) {                     boolean hasPermission = currentUser.hasPermission(priority);                                          if (!hasPermission) {                         return "forbidden";                     }                 }             }     //      System.out.println("name = "+name + "**actionName = "+actionName+"*methodName = "+methodName);                 String result = invoke.invoke();             return result;         }

看完上述內(nèi)容,你們掌握Struts2中怎么利用interceptor實現(xiàn)權(quán)限管理的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI