溫馨提示×

溫馨提示×

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

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

spring中aop的xml配置方法實(shí)例詳解

發(fā)布時(shí)間:2020-08-27 19:37:55 來源:腳本之家 閱讀:129 作者:小Cai先森 欄目:編程語言

前言

AOP:即面向切面編程,是一種編程思想,OOP的延續(xù)。在程序開發(fā)中主要用來解決一些系統(tǒng)層面上的問題,比如日志,事務(wù),權(quán)限等等。

aop,面向切面編程的目標(biāo)就是分離關(guān)注點(diǎn),比如:一個騎士只需要關(guān)注守護(hù)安全,或者遠(yuǎn)征,而騎士輝煌一生的事跡由誰來記錄和歌頌?zāi)?,?dāng)然不會是自己了,這個完全可以由詩人去歌頌,比如當(dāng)騎士出征的時(shí)候詩人可以去歡送,當(dāng)騎士英勇犧牲的時(shí)候,詩人可以寫詩歌頌騎士的一生。那么騎士只需要關(guān)注怎么打仗就好了。而詩人也只需要關(guān)注寫詩歌頌和歡送就好了,那么這樣就把功能分離了。所以可以把詩人當(dāng)成一個切面,當(dāng)騎士出征的前后詩人分別負(fù)責(zé)歡送和寫詩歌頌(記錄)。而且,這個切面可以對多個騎士或者明人使用,并不只局限于一個騎士。這樣,既分離了關(guān)注點(diǎn),也減低了代碼的復(fù)雜程度。

耐心看完本篇文章,會對理解AOP有一定的幫助。下面話不多說,來一起看看詳細(xì)的介紹吧。

代碼示例如下:

騎士類:

package com.cjh.aop2;

/**
 * @author Caijh
 *
 * 2017年7月11日 下午3:53:19
 */
public class BraveKnight {
 public void saying(){
  System.out.println("我是騎士");
 }
}

詩人類:

package com.cjh.aop2;

/**
 * @author Caijh
 *
 * 2017年7月11日 下午3:47:04
 */
public class Minstrel {
 public void beforSay(){
  System.out.println("前置通知");
 }
 
 public void afterSay(){
  System.out.println("后置通知");
 }
}

spring配置文件:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xmlns:aop="http://www.springframework.org/schema/aop"
 xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
  http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.3.xsd">
 <!-- 目標(biāo)對象 -->
 <bean id="knight" class="com.cjh.aop2.BraveKnight"/>
 <!-- 切面bean -->
 <bean id="mistrel" class="com.cjh.aop2.Minstrel"/>
 <!-- 面向切面編程 -->
 <aop:config>
  <aop:aspect ref="mistrel">
   <!-- 定義切點(diǎn) -->
   <aop:pointcut expression="execution(* *.saying(..))" id="embark"/>
   <!-- 聲明前置通知 (在切點(diǎn)方法被執(zhí)行前調(diào)用)-->
   <aop:before method="beforSay" pointcut-ref="embark"/>
   <!-- 聲明后置通知 (在切點(diǎn)方法被執(zhí)行后調(diào)用)-->
   <aop:after method="afterSay" pointcut-ref="embark"/>
  </aop:aspect>
 </aop:config>
</beans>

測試代碼:

package com.cjh.aop2;

import org.springframework.context.ApplicationContext;
import org.springframework.context.support.ClassPathXmlApplicationContext;

/**
 * @author Caijh
 *
 * 2017年7月11日 下午4:02:04
 */
public class Test {
 public static void main(String[] args) {
  ApplicationContext ac = new ClassPathXmlApplicationContext("com/cjh/aop2/beans.xml");
  BraveKnight br = (BraveKnight) ac.getBean("knight");
  br.saying();
 }
}

執(zhí)行結(jié)果如下:

前置通知
我是騎士
后置通知

=======================================================================================

aop(面向切面編程)的好處就是,當(dāng)執(zhí)行了我們主要關(guān)注的行為(騎士類對象),也就是切點(diǎn),那么切面(詩人對象)就會自動為我們進(jìn)行服務(wù),無需過多關(guān)注。如上測試代碼,我們只調(diào)用了BraveKnight類的saying()方法,它就自己在saying方法前執(zhí)行了前置通知方法,在執(zhí)行完saying之后就自動執(zhí)行后置通知。通過這樣我們可以做權(quán)限設(shè)置和日志處理。 

補(bǔ)充:pointcut執(zhí)行方法書寫格式如下

spring中aop的xml配置方法實(shí)例詳解

工程目錄結(jié)構(gòu):

spring中aop的xml配置方法實(shí)例詳解

如果運(yùn)行過程中出現(xiàn)nofoundclass的錯誤,一般是少了:aspectjweaver.jar這個包,需要下載,并添加進(jìn)去。

下載地址:http://xiazai.jb51.net/201707/yuanma/aspectjweaver(jb51.net).rar

總結(jié)

以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作能帶來一定的幫助,如果有疑問大家可以留言交流,謝謝大家對億速云的支持。

向AI問一下細(xì)節(jié)

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

AI