Struts2中怎么利用interceptor實現(xiàn)權(quán)限管理,相信很多沒有經(jīng)驗的人對此束手無策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個問題。
站在用戶的角度思考問題,與客戶深入溝通,找到望花網(wǎng)站設(shè)計與望花網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗,讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗好的作品,建站類型包括:成都網(wǎng)站設(shè)計、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機端網(wǎng)站、網(wǎng)站推廣、域名注冊、虛擬空間、企業(yè)郵箱。業(yè)務(wù)覆蓋望花地區(qū)。
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)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!
網(wǎng)站名稱:Struts2中怎么利用interceptor實現(xiàn)權(quán)限管理
本文網(wǎng)址:http://aaarwkj.com/article30/gjcoso.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站營銷、網(wǎng)站內(nèi)鏈、電子商務(wù)、商城網(wǎng)站、品牌網(wǎng)站設(shè)計、搜索引擎優(yōu)化
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)