導(dǎo)語(yǔ):
面向切面編程(AOP) 所要解決的問(wèn)題是把橫切關(guān)注點(diǎn)與業(yè)務(wù)邏輯相分離与涡。
DI有助于應(yīng)用對(duì)象之間的解耦挨措, 而AOP可以實(shí)現(xiàn)橫切關(guān)注點(diǎn)與它們所影響的對(duì)象之間的解耦祟同。
日志是應(yīng)用切面的常見(jiàn)范例狰住,除此之外,切面還適用聲明式事務(wù)轻纪、 安全和緩存油额。
主要內(nèi)容:
- 面向切面編程的基本原理
- 通過(guò)POJO創(chuàng)建切面
- 使用@AspectJ注解
- 為AspectJ切面注入依賴
一、面向切面編程的基本原理
橫切關(guān)注點(diǎn)可以被模塊化為特殊的類刻帚,這些類被稱為切面(aspect) 潦嘶。
- AOP術(shù)語(yǔ)
通知包含了需要用于多個(gè)應(yīng)用對(duì)象的橫切行為; 連接點(diǎn)是程序執(zhí)行過(guò)程中能夠應(yīng)用通知的所有點(diǎn)崇众; 切點(diǎn)定義了通知被應(yīng)用的具體位置(在哪些連接點(diǎn)) 掂僵。 其中關(guān)鍵的概念是切點(diǎn)定義了哪些連接點(diǎn)會(huì)得到通知。
- 通知(Advice)
在AOP術(shù)語(yǔ)中顷歌,切面的工作被稱為通知锰蓬。通知定義了切面是什么以及何時(shí)使用。
Spring切面可以應(yīng)用5種類型的通知:前置通知(Before) : 在目標(biāo)方法被調(diào)用之前調(diào)用通知功能眯漩;
后置通知(After) : 在目標(biāo)方法完成之后調(diào)用通知芹扭, 此時(shí)不會(huì)關(guān)心方法的輸出是什么;
返回通知(After-returning) : 在目標(biāo)方法成功執(zhí)行之后調(diào)用通知赦抖;
異常通知(After-throwing) : 在目標(biāo)方法拋出異常后調(diào)用通知舱卡;
環(huán)繞通知(Around) : 通知包裹了被通知的方法, 在被通知的方法調(diào)用之前和調(diào)用之后執(zhí)行自定義的行為队萤。 - 連接點(diǎn)(Join point)(被切的類上的點(diǎn))
連接點(diǎn)是在應(yīng)用執(zhí)行過(guò)程中能夠插入切面的一個(gè)點(diǎn)轮锥。這個(gè)點(diǎn)可以是調(diào)用方法時(shí)、 拋出異常時(shí)要尔、 甚至修改一個(gè)字段時(shí)舍杜。切面代碼可以利用這些點(diǎn)插入到應(yīng)用的正常流程之中, 并添加新的行為赵辕。 - 切點(diǎn)(Poincut)(在切面上定義要切的類)
切點(diǎn)有助于縮小切面所通知的連接點(diǎn)的范圍既绩。 - 切面(Aspect)
切面是通知和切點(diǎn)的結(jié)合。 通知和切點(diǎn)共同定義了切面的全部?jī)?nèi)容——它是什么匆帚, 在何時(shí)和何處完成其功能熬词。 - 引入(Introduction)
引入允許我們向現(xiàn)有的類添加新方法或?qū)傩浴?/li> - 織入(Weaving)
織入是把切面應(yīng)用到目標(biāo)對(duì)象并創(chuàng)建新的代理對(duì)象的過(guò)程嘶伟。在目標(biāo)對(duì)象的生命周期里有多個(gè)點(diǎn)可以進(jìn)行織入:
編譯期: 切面在目標(biāo)類編譯時(shí)被織入出嘹。 這種方式需要特殊的編譯器柜裸。 AspectJ的織入編譯器就是以這種方式織入切面的桃漾。
類加載期: 切面在目標(biāo)類加載到JVM時(shí)被織入丹莲。 這種方式需要特殊的類加載器(ClassLoader) 揖铜,它可以在目標(biāo)類被引入應(yīng)用之前增強(qiáng)該目標(biāo)類的字節(jié)碼述寡。AspectJ 5的加載時(shí)織入 (load-timeweaving找岖, LTW) 就支持以這種方式織入切面嫉晶。
運(yùn)行期:切面在應(yīng)用運(yùn)行的某個(gè)時(shí)刻被織入骑疆。 一般情況下田篇,在織入切面時(shí), AOP容器會(huì)為目標(biāo)對(duì)象動(dòng) 態(tài)地創(chuàng)建一個(gè)代理對(duì)象箍铭。Spring AOP就是以這種方式織入切面的泊柬。
- Spring對(duì)AOP的支持
創(chuàng)建切點(diǎn)來(lái)定義切面所織入的連接點(diǎn)是AOP框架的基本功能,而在SpringAOP中诈火,spring提供了4種類型的AOP支持:
- 基于代理的經(jīng)典Spring AOP
- 純POJO切面
- @AspectJ注解驅(qū)動(dòng)的切面
- 注入式AspectJ切面(適用于Spring各版本)
前三種都是Spring AOP實(shí)現(xiàn)的變體兽赁, Spring AOP構(gòu)建在動(dòng)態(tài)代理基礎(chǔ)之上, 因此冷守, Spring對(duì)AOP的支持局限于方法攔截刀崖。
Spring AOP框架的一些關(guān)鍵知識(shí):
- Spring通知是Java編寫的
- Spring在運(yùn)行時(shí)通知對(duì)象
- Spring只支持方法級(jí)別的連接點(diǎn)
二、通過(guò)切點(diǎn)來(lái)選擇連接點(diǎn)
SpringAOP中拍摇,execution指示器是我們?cè)诰帉懬悬c(diǎn)定義時(shí)最主要使用的指示器亮钦。
- 編寫切點(diǎn)
要想編寫切點(diǎn),必須先創(chuàng)建一個(gè)“被切”的類充活,也叫主題:
public interface Performance {
public void perform();
}
Performance可以代表任何類型的現(xiàn)場(chǎng)表演蜂莉, 如舞臺(tái)劇、 電影或音樂(lè)會(huì)堪唐。 假設(shè)我們想編寫Performance的perform()方法觸發(fā)的通知巡语。
我們使用execution()指示器選擇Performance的perform()方法翎蹈。 方法表達(dá)式以“*”號(hào)開(kāi)始淮菠, 表明了我們不關(guān)心方法返回值的類型。 然后荤堪, 我們指定了全限定類名和方法名合陵。 對(duì)于方法參數(shù)列表, 我
們使用兩個(gè)點(diǎn)號(hào)(..) 表明切點(diǎn)要選擇任意的perform()方法澄阳, 無(wú)論該方法的入?yún)⑹鞘裁础?/p>
現(xiàn)在假設(shè)我們需要配置的切點(diǎn)僅匹配concert包拥知。 在此場(chǎng)景下, 可以使用within()指示器來(lái)限制匹配碎赢, 如圖所示:
因?yàn)椤?amp;”在XML中有特殊含義低剔, 所以在Spring的XML配置里面描述切點(diǎn)時(shí), 我們可以使用and來(lái)代替“&&”肮塞。 同樣襟齿, or和not可以分別用來(lái)代替“||”和“!”。
- 在切點(diǎn)中選擇bean
Spring還引入了一個(gè)新的bean()指示器枕赵, 它允許我們?cè)谇悬c(diǎn)表達(dá)式中使用bean的ID來(lái)標(biāo)識(shí)bean猜欺。 bean()使用bean ID或bean名稱作為參數(shù)來(lái)限制切點(diǎn)只匹配特定的bean。//在執(zhí)行Performance的perform()方法時(shí)應(yīng)用通知拷窜, 但限定bean的ID為woodstock: execution(* concert.Performance.perform()) and bean('woodstock') //使用非操作為除了特定ID以外的其他bean應(yīng)用通知: execution(* concert.Performance.perform()) and !bean('woodstock')
三开皿、使用注解創(chuàng)建切面
- 定義切面
//以下是一個(gè)切面:
@Aspect
public class Audience {
//先使用 @Pointcut在performance()方法上添加 @Pointcut注解涧黄,其值是一個(gè)切點(diǎn)表達(dá)式。
@Pointcut("execution(** aopdemo.Performance.perform(..))")
public void performance() {}
//使用環(huán)繞通知實(shí)現(xiàn)Audience切面
@Around("performance()")
public void watchPerformance(ProceedingJoinPoint jp) {
try {
System.out.println("觀眾1");
//System.out.println("開(kāi)場(chǎng)前通知");
//System.out.println("入座");
jp.proceed();
System.out.println("觀眾1鼓掌");
} catch (Throwable e) {
System.out.println("發(fā)生演出事故了赋荆。笋妥。。");
}
}
}
- performance()方法的實(shí)際內(nèi)容并不重要窄潭, 在這里它實(shí)際上應(yīng)該是空的挽鞠。 其實(shí)該方法本身只是一個(gè)標(biāo)識(shí), 供 @Pointcut注解依附狈孔。
- 環(huán)繞通知是最為強(qiáng)大的通知類型信认。 它能夠讓你所編寫的邏輯將被通知的目標(biāo)方法完全包裝起來(lái)。實(shí)際上就像在一個(gè)通知方法中同時(shí)編寫前置通知和后置通知均抽。
- 啟用自動(dòng)代理功能
- JavaConfig中啟用AspectJ注解的自動(dòng)代理
@Configuration
@EnableAspectJAutoProxy
public class PerformanceConfig {
@Bean
public Performance getPer() {
return new NCYanChu();
}
@Bean
public Audience audience() {
return new Audience();
}
@Bean
public Audience2 audience2() {
return new Audience2();
}
}
-
在XML中嫁赏, 通過(guò)Spring的aop命名空間啟用AspectJ自動(dòng)代理
- 處理通知中的參數(shù)
//切面所通知的方法有參數(shù)
@Pointcut("execution(**aopdemo.Performance.perform(String))&&args(programName)")
public void performance(String programName) {}
@Around("performance(programName)")
public void watchPerformance(ProceedingJoinPoint jp,String programName) {
try {
System.out.println("觀眾2");
//System.out.println("開(kāi)場(chǎng)前通知");
//System.out.println("入座");
jp.proceed();
System.out.println("表演者:"+programName);
System.out.println("觀眾2鼓掌");
} catch (Throwable e) {
System.out.println("發(fā)生演出事故了。油挥。潦蝇。");
}
}
4.通過(guò)注解引入新功能
@Aspect
public class Audience3 {
@DeclareParents(value="aopdemo.Performance+",defaultImpl=DefaultEncoreable.class)
public static Encoreable encoreable;
}
@DeclareParents注解由三部分組成:
- value屬性指定了哪種類型的bean要引入該接口。 在本例中深寥, 也就是所有實(shí)現(xiàn)Performance的類型攘乒。 (標(biāo)記符后面的加號(hào)表示是Performance的所有子類型, 而不是Performance本身惋鹅。 )
- defaultImpl屬性指定了為引入功能提供實(shí)現(xiàn)的類则酝。 在這里,我們指定的是DefaultEncoreable提供實(shí)現(xiàn)闰集。
- @DeclareParents注解所標(biāo)注的靜態(tài)屬性指明了要引入了接
口沽讹。 在這里, 我們所引入的是Encoreable接口武鲁。
四爽雄、在XML中聲明切面
如果需要聲明切面, 但是又不能為通知類添加注解的時(shí)候沐鼠, 那么就必須轉(zhuǎn)向XML配置了挚瘟。
優(yōu)點(diǎn):Spring的AOP配置元素能夠以非侵入性的方式聲明切面
AOP配置元素 用 途
<aop:advisor> 定義AOP通知器
<aop:after> 定義AOP后置通知(不管被通知的方法是否執(zhí)行成功)
<aop:after-returning> 定義AOP返回通知
<aop:after-throwing> 定義AOP異常通知
<aop:around> 定義AOP環(huán)繞通知
<aop:aspect> 定義一個(gè)切面
<aop:aspectj-autoproxy> 啟用 @AspectJ注解驅(qū)動(dòng)的切面
<aop:before> 定義一個(gè)AOP前置通知
<aop:config> 頂層的AOP配置元素。 大多數(shù)的<aop:*>元素必須包含在<aop:config>元素內(nèi)
<aop:declare-parents> 以透明的方式為被通知的對(duì)象引入額外的接口
<aop:pointcut> 定義一個(gè)切點(diǎn)
<?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">
<aop:config>
<aop:aspect ref="audience">
<aop:pointcut
id="performance"
expression="execution(** aopdemo.Performance.perform(..))" />
<aop:around
pointcut-ref="performance"
method="watchPerformance" />
</aop:aspect>
</aop:config>
</beans>
五饲梭、注入AspectJ切面
切面很可能依賴其他類來(lái)完成它們的工作乘盖。如果在執(zhí)行通知時(shí), 切面依賴于一個(gè)或多個(gè)類排拷,我們可以在切面內(nèi)部實(shí)例化這些協(xié)作的對(duì)象侧漓。 但更好的方式是, 我們可以借助Spring的依賴注入把bean裝配進(jìn)AspectJ切面中监氢。
- 定義切面:
- java類定義
package aopdemo;
@Aspect
public class CriticAspect { //這里也可以使用package aopdemo;
//無(wú)@Aspect注解
public aspect CriticAspect{}
public CriticAspect() {}
public static CriticAspect aspectOf() {
return new CriticAspect();
}
@Pointcut ("execution(* perform(..))")
public void performance() {}
@AfterReturning("performance()")
public void perFinish() {
System.out.println(123);
System.out.println(criticismEngine.getCriticism());
}
// Pointcut performance() "execution(* perform(..))";
private CriticismEngine criticismEngine;
public void setCriticismEngine(CriticismEngine criticismEngine) {
this.criticismEngine = criticismEngine;
}
public CriticismEngine getCriticismEngine() {
return criticismEngine;
}
}
- xml配置定義:
<aop:aspectj-autoproxy />
<bean id="criticismEngine" class="aopdemo.CriticismEngineImpl">
<property name="criticismPool">
<list>
<value>1</value>
<value>2</value>
<value>3</value>
</list>
</property>
</bean>
<bean class="aopdemo.CriticAspect" factory-method="aspectOf">
<property name="criticismEngine" ref="criticismEngine"></property>
</bean>
<bean class="aopdemo.NCYanChu">
</bean>
//其中aspectOf方法是CriticAspect類中生成CriticAspect實(shí)例的靜態(tài)工廠方法:
public static CriticAspect aspectOf() {
return new CriticAspect();
}