AOP 在實際項目中運用的場景主要有 權(quán)限管理(Authority Management)、事務(wù)管理(Transaction Management)、安全管理(Security)、日志管理(Logging)和調(diào)試管理(Debugging) 等。
為興海等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及興海網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為做網(wǎng)站、網(wǎng)站建設(shè)、興海網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!問題源于項目開發(fā)
最近項目中需要做一個權(quán)限管理模塊,按照之前同事的做法是在controller層的每個接口調(diào)用之前上做邏輯判斷,這樣做也沒有不妥,但是代碼重復(fù)率太高,而且是體力勞動,so,便有了如題所說的使用spring aop做一個切點來實現(xiàn)通用功能的權(quán)限管理,這樣也就降低了項目后期開發(fā)的可擴展性。
權(quán)限管理的代碼實現(xiàn)與配置文件
在最小的代碼修改程度上,aop無疑是最理想的選擇。項目中有各種權(quán)限的復(fù)合,相對來說邏輯復(fù)雜度比較高,所以一步步來。因為權(quán)限涉及到的是后端接口的調(diào)用所以樓主選擇在controller層代碼做切面,而切點就是controller中的各個方法塊,對于通用訪問權(quán)限,我們使用execution表達(dá)式進行排除。
只讀管理員權(quán)限的實現(xiàn)及切點選擇
對于實現(xiàn)排除通用的controller,樓主采用的是execution表達(dá)式邏輯運算。因為只讀管理員擁有全局讀權(quán)限,而對于增刪改權(quán)限,樓主采用的是使用切點切入是增刪改的方法,so,這個時候規(guī)范的方法命名就很重要了。對于各種與只讀管理員進行復(fù)合的各種管理員,我們在代碼中做一下特殊判斷即可。下面是spring aop的配置文件配置方法。
<bean id="usersPermissionsAdvice" class="com.thundersoft.metadata.aop.UsersPermissionsAdvice"/> <aop:config> <!--定義切面 --> <aop:aspect id="authAspect" ref="usersPermissionsAdvice"> <!-- 定義切入點 (配置在com.thundersoft.metadata.web.controller下所有的類在調(diào)用之前都會被攔截) --> <aop:pointcut expression="(execution(* com.thundersoft.metadata.web.controller.*.add*(..)) or execution(* com.thundersoft.metadata.web.controller.*.edit*(..)) or execution(* com.thundersoft.metadata.web.controller.*.del*(..)) or execution(* com.thundersoft.metadata.web.controller.*.update*(..)) or execution(* com.thundersoft.metadata.web.controller.*.insert*(..)) or execution(* com.thundersoft.metadata.web.controller.*.modif*(..))) or execution(* com.thundersoft.metadata.web.controller.*.down*(..))) and ( !execution(* com.thundersoft.metadata.web.controller.FindPasswordController.*(..)) and !execution(* com.thundersoft.metadata.web.controller.SelfServiceController.*(..)) and !execution(* com.thundersoft.metadata.web.controller.HomeController.*(..)) and !execution(* com.thundersoft.metadata.web.controller.UserStatusController.*(..)) and !execution(* com.thundersoft.metadata.web.controller.DashboardController.*(..)) and !execution(* com.thundersoft.metadata.web.controller.MainController.*(..))))" id="authPointCut"/> <!--方法被調(diào)用之前執(zhí)行的 --> <aop:before method="readOnly" pointcut-ref="authPointCut"/> </aop:aspect> </aop:config>
網(wǎng)站題目:springaop實現(xiàn)用戶權(quán)限管理的示例-創(chuàng)新互聯(lián)
文章鏈接:http://jinyejixie.com/article2/pigic.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站收錄、標(biāo)簽優(yōu)化、外貿(mào)建站、網(wǎng)站設(shè)計公司、微信公眾號、外貿(mào)網(wǎng)站建設(shè)
聲明:本網(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)
猜你還喜歡下面的內(nèi)容