Spring AOP(一)

Spring AOP實(shí)現(xiàn)原理

  • 動(dòng)態(tài)代理: 利用核心類Proxy和接口InvocationHandler(基于代理模式的思想)
  • 字節(jié)碼生成: 利用CGLIB動(dòng)態(tài)字節(jié)碼庫

Spring AOP中的關(guān)鍵字

1.Joinpoint

只支持方法執(zhí)行類型的Joinpoint,力求付出20%的努力來滿足80%的開發(fā)需求

2.Pointcut

Spring AOP Pointcut 框架結(jié)構(gòu):

根接口: org.springframework.aop.Pointcut

public interface Pointcut {

    /**
     * Return the ClassFilter for this pointcut.
     * @return the ClassFilter (never {@code null})
     */
    ClassFilter getClassFilter();

    /**
     * Return the MethodMatcher for this pointcut.
     * @return the MethodMatcher (never {@code null})
     */
    MethodMatcher getMethodMatcher();


    /**
     * Canonical Pointcut instance that always matches.
     */
    Pointcut TRUE = TruePointcut.INSTANCE;

}

其中晒来,ClassFilterMethodMatcher分別用于匹配將執(zhí)行織入操作的對(duì)象及其相應(yīng)的方法肛度。

如果直接獲取類型為PointcutTRUE對(duì)象時(shí)羡微,那么代表Pointcut的匹配將會(huì)針對(duì)系統(tǒng)所有的目標(biāo)類以及它們的實(shí)例進(jìn)行谷饿。

MethodMatcher是一個(gè)重要的接口,其內(nèi)部結(jié)構(gòu)如下:

public interface MethodMatcher {

    /**
     * Perform static checking whether the given method matches. If this
     * returns {@code false} or if the {@link #isRuntime()} method
     * returns {@code false}, no runtime check (i.e. no.
     * {@link #matches(java.lang.reflect.Method, Class, Object[])} call) will be made.
     * @param method the candidate method
     * @param targetClass the target class (may be {@code null}, in which case
     * the candidate class must be taken to be the method's declaring class)
     * @return whether or not this method matches statically
     */
    boolean matches(Method method, Class<?> targetClass);

    /**
     * Is this MethodMatcher dynamic, that is, must a final call be made on the
     * {@link #matches(java.lang.reflect.Method, Class, Object[])} method at
     * runtime even if the 2-arg matches method returns {@code true}?
     * <p>Can be invoked when an AOP proxy is created, and need not be invoked
     * again before each method invocation,
     * @return whether or not a runtime match via the 3-arg
     * {@link #matches(java.lang.reflect.Method, Class, Object[])} method
     * is required if static matching passed
     */
    boolean isRuntime();

    /**
     * Check whether there a runtime (dynamic) match for this method,
     * which must have matched statically.
     * <p>This method is invoked only if the 2-arg matches method returns
     * {@code true} for the given method and target class, and if the
     * {@link #isRuntime()} method returns {@code true}. Invoked
     * immediately before potential running of the advice, after any
     * advice earlier in the advice chain has run.
     * @param method the candidate method
     * @param targetClass the target class (may be {@code null}, in which case
     * the candidate class must be taken to be the method's declaring class)
     * @param args arguments to the method
     * @return whether there's a runtime match
     * @see MethodMatcher#matches(Method, Class)
     */
    boolean matches(Method method, Class<?> targetClass, Object[] args);


    /**
     * Canonical instance that matches all methods.
     */
    MethodMatcher TRUE = TrueMethodMatcher.INSTANCE;

}

方法

boolean matches(Method method, Class<?> targetClass

表示不會(huì)對(duì)被代理對(duì)象的方法參數(shù)進(jìn)行捕獲妈倔,處理博投。當(dāng)方法isRuntime()返回false時(shí),表示執(zhí)行的是該方法盯蝴。這種類型的處理稱之為StaticMethodMathcer毅哗,可以對(duì)匹配到的結(jié)果進(jìn)行緩存,所以處理性能很高捧挺。

同理虑绵,當(dāng)isRuntime()返回true時(shí),代表執(zhí)行的是方法

boolean matches(Method method, Class<?> targetClass, Object[] args)

表示要對(duì)被代理對(duì)象的方法參數(shù)進(jìn)行捕獲闽烙,處理翅睛。這種類型的處理稱之為DynamicMethodMatcher,因?yàn)閰?shù)不定黑竞,無法進(jìn)行緩存捕发,所以性能不高。

常見的幾種Pointcut實(shí)現(xiàn):

1.NameMatchMethodPointcut:

NameMatchMethodPointcut pointcut = new NameMatchMethodPointcut();
pointcut.setMappedName("test1");
pointcut.setMappedNames(new String[]{"test1","test2"]};

該類可以直接根據(jù)給定的方法名進(jìn)行匹配(也支持簡單的模糊匹配)很魂,不過通過上邊的代碼也可以了解到扎酷,該匹配不涉及目標(biāo)方法的參數(shù),所以對(duì)于重載方法則無法進(jìn)行有效的支持遏匆。

2.AbstractRegexpMethodPointcut:

該類支持正則表達(dá)式來匹配方法法挨,其下有一個(gè)重要的實(shí)現(xiàn)類:JdkRegexpMethodPointcut。代碼片段如下:

JdkRegexpMethodPointcut pointcut = new JdkRegexpMethodPointcut();
pointcut.setPattern(".*match.*");
pointcut.setPatterns(new String[]{".*match.*",".*matches"});

3.AnnotationMatchingPointcut:

基于注解的方法匹配幅聘。代碼片段如下:

定義自定義注解:

//類級(jí)別的注解
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.Type)
public @interface ClassLevelAnnotation {
}

//方法級(jí)別的注解
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MethodLevelAnnotation {
}

將注解應(yīng)用在某一個(gè)類上:

@ClassLevelAnnotation
public class GenericTargetObject {
  
  @MethodLevelAnnotation
  public void hello() {
    System.out.println("hello");
  }
}

利用AnnotationMatchingPointcut來進(jìn)行匹配:

類級(jí)別的匹配:

AnnotationMatchingPointcut pointcutByClass = new AnnotationMatchingPointcut.forClassAnnotation(ClassLevelAnnotation.class);

方法級(jí)別的匹配:

AnnotationMatchingPointcut pointcutByMethod = new AnnotationMatchingPointcut.forMethodAnnotation(MethodLevelAnnotation.class);

或者兩個(gè)結(jié)合使用:

AnnotationMatchingPointcut pointcutByClassAndMethod = new AnnotationMatchingPointcut.forMethodAnnotation(ClassLevelAnnotation.class, MethodLevelAnnotation.class);

4.擴(kuò)展Pointcut:

通過繼承抽象類StaticMethodMatcherPointcutDynamicMethodMatcherPointcut來自定義自己的Pointcut坷剧。

3.Advice

Spring Advice可以分為兩大類:per-classper-instance

1.per-class 是指該類型的Advice的實(shí)例可以在目標(biāo)對(duì)象類的所有實(shí)例之間共享喊暖,這種類型的Advice通常只是提供方法攔截的功能,不會(huì)為目標(biāo)對(duì)象類保存任何狀態(tài)或者添加新的特性撕瞧。

其包括:

  • Before Advice

代碼片段如下:

public interface MethodBeforeAdvice extends BeforeAdvice {
  void before(Method method, Object[] args, Object object) throws Throwable;
}

BeforeAdvice接口為一個(gè)標(biāo)記接口陵叽,需要繼承該接口,實(shí)現(xiàn)自己的before邏輯

  • ThrowsAdvice

代碼片段如下:

public class ExceptionBarrierThrowsAdvice implements ThrowsAdvice {
    public void afterThrowing(Throwable t) {
      //普通異常處理
    }
    
    public void afterThrowing(RuntimeException e) {
      //運(yùn)行時(shí)異常處理
    }
}

ThrowsAdvice同樣也為一個(gè)標(biāo)記接口丛版,不過在實(shí)現(xiàn)它時(shí)巩掺,方法定義需要遵循如下規(guī)則:

void afterThrowing([Method, args, target], ThrowableSubclass);

其中,[]中的可以省略页畦。

  • AfterReturningAdvice

其接口定義如下:

public interface AfterReturningAdvice extends AfterAdvice {

    /**
     * Callback after a given method successfully returned.
     * @param returnValue the value returned by the method, if any
     * @param method method being invoked
     * @param args arguments to the method
     * @param target target of the method invocation. May be {@code null}.
     * @throws Throwable if this object wishes to abort the call.
     * Any exception thrown will be returned to the caller if it's
     * allowed by the method signature. Otherwise the exception
     * will be wrapped as a runtime exception.
     */
    void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable;

}

通過該接口方法可以獲取到原方法成功執(zhí)行之后的返回值胖替,不過不可以對(duì)其進(jìn)行修改。

  • Around Advice

Spring沒有提供該接口的規(guī)范,而是直接使用了AOP Alliance的標(biāo)準(zhǔn)接口独令,如下:

pubic interface MethodInterceptor extends Interceptor {
  Object invoke(MethodInvocation invocation) throws Throwable;
}

能夠cover前面幾種類型的Advice端朵,很強(qiáng)大!

2.per-instance類型的Advice不會(huì)在目標(biāo)類所有對(duì)象實(shí)例之間共享燃箭,而是會(huì)為不同的實(shí)例對(duì)象保存它們各自的狀態(tài)以及相關(guān)邏輯冲呢。它織入面向的是對(duì)象。在Spring AOP中招狸,Introduction就是唯一的一種per-instance型的Advice敬拓,對(duì)其進(jìn)行實(shí)現(xiàn)的是IntroductionInterceptor

public interface IntroductionInterceptor extends MethodInterceptor, DynamicIntroductionAdvice {
}

IntroductionInterceptor接口還繼承了兩個(gè)重要的接口MethodInterceptorDynamicIntroductionAdvice。其中接口DynamicIntroductionAdvice界定為哪些接口類提供相應(yīng)的攔截功能裙戏,通過接口MethodInterceptor來處理新添加的接口方法調(diào)用乘凸。

如果要添加切入的邏輯操作,可以直接擴(kuò)展IntroductionInterceptor中的invoke方法累榜,不過也可以利用Spring提供的兩個(gè)實(shí)現(xiàn)類來完成:

  • DelegatingIntroductionInterceptor (需要設(shè)置其scope = prototype)

來簡單看一段偽代碼演示:

{SubClass} targetObject = new {Class()};
DelegatingIntroductionInterceptor interceptor = new DelegatingIntroductionInterceptor(delegate);
//進(jìn)行織入
{SubClass} proxyObject = {SubClass} weaver.weave(interceptor).getPxory();
  • DelegatePerTargetObjectIntroductionInterceptor

4.Aspect

Aspect在Spring中表示為Advisor营勤,其體系結(jié)構(gòu)分為兩類:PointcutAdvisorIntroductionAdvisor

1.PointcutAdvisor接口:

public interface PointcutAdvisor extends Advisor {

    /**
     * Get the Pointcut that drives this advisor.
     */
    Pointcut getPointcut();

}

對(duì)該接口的實(shí)現(xiàn)有幾個(gè)比較重要的類:DefaultPointcutAdvisorNameMatchMethodPointcutAdvisorRegexpMethodPointcutAdvisor

來看一下DefaultPointcutAdvisor的構(gòu)造方法:

    public DefaultPointcutAdvisor(Pointcut pointcut, Advice advice) {
        this.pointcut = pointcut;
        setAdvice(advice);
    }

可以看出信柿,該類是持有一個(gè)PointcutAdvice冀偶,所以從這一點(diǎn)上也可以將Spring的Advisor理解為封裝了PointcutAdvice的一個(gè)容器。

然后對(duì)于類NameMatchMethodPointcutAdvisorRegexpMethodPointcutAdvisor渔嚷,聯(lián)想一下前邊了解到的幾種類型的Pointcut进鸠,不難得出,這兩個(gè)類對(duì)于Pointcut的封裝則分別為NameMatchMethodPointcutRegexpMethodPointcut形病。

2.IntroductionAdvisor接口:是對(duì)Introduction類型的封裝客年,其內(nèi)部持有的Pointcut和Advice只能是都是Introduction類型的。

5.Ordered

可以通過Ordered接口來為不同的Advisor配置相應(yīng)的優(yōu)先級(jí)漠吻。

在xml中來為Advisor指定不同的優(yōu)先級(jí):

<bean id="pemissionAuthAdvisor" class="xxx">
    <property name="order" value="1">
 <bean id="exceptionBarrierAdvisor" class="yyy">
    <property name="order" value="0">   

當(dāng)然也可以在代碼中量瓜,通過調(diào)用抽象類AbstractPointcutAdvisor

    public void setOrder(int order) {
        this.order = order;
    }

來為不同的Advisor設(shè)置相應(yīng)的優(yōu)先級(jí)

Spring AOP 織入器

上邊的流程全部走完一遍之后,接下來就是如何調(diào)用Spring AOP提供的接口來獲得針對(duì)目標(biāo)對(duì)象的一個(gè)代理對(duì)象啦途乃。有兩種方法绍傲,分別是ProxyFactoryProxyFactoryBean

  • ProxyFactory

簡單看一下ProxyFactory的代碼演示:

ProxyFactory weaver = new ProxyFactory();
Advisor advisor = ..;
waever.addAdvisor(advisor);
weaver.setTarget({yourTargetObject});
Object proxyObject = weaver.getProxy();

所以如果要利用ProxyFactory來生成代理對(duì)象,需要設(shè)置兩處:目標(biāo)對(duì)象:yourTargetObjectAdvisor耍共。

上邊說到Sping AOP的實(shí)現(xiàn)包括動(dòng)態(tài)代理字節(jié)碼生成烫饼,那么什么時(shí)候采用其中的某種方式呢?

對(duì)于動(dòng)態(tài)代理如果Spring AOP檢測到targetObject實(shí)現(xiàn)了相應(yīng)的接口试读,那么就會(huì)采用動(dòng)態(tài)代理杠纵。可以顯示指定接口钩骇,比如:

weaver.setInterfaces();

也可以不用指定比藻,框架會(huì)自動(dòng)檢測铝量。

但是也可以 通過設(shè)置相應(yīng)的屬性來強(qiáng)制轉(zhuǎn)換成字節(jié)碼生成方式,方式為:

ProxyFactory weaver = new ProxyFactory();
weaver.setproxyTargetClass(true);

另外還有兩種方式是要采用字節(jié)碼生成方式來代理的:

1.如果targetObject沒有實(shí)現(xiàn)任何接口

2.將ProxyFactory的optimize屬性置為true

以前總結(jié)的都是針對(duì)類級(jí)別银亲,即per-class的代理慢叨,而對(duì)于per-instance級(jí)別的代理該如何去做呢?

來簡單看一段偽代碼演示吧:

ProxyFactory weaver = new ProxyFactory();
/*
 *面向接口的代理
 *weaver.setProxyTargetClass(true);面向類的代理群凶,即CGLIB代理
 */
weaver.setInterfaces(new class[] {Interface1.class, Interface2.class}); 
DemoIntroductionInterceptor advice = new DemoIntroductionInterceptor();
weaver.addAdvice(advice);
DefaultIntroductionAdvisor advisor = new DefaultIntroductionAdvisor(advice, advice);
weaver.addAdvisor(advisor);
Object proxy = weaver.getProxy();
  • ProxyFactoryBean

ProxyFactoryBean為IOC容器中的一個(gè)織入器插爹。同proxyFactory,它也支持基于接口和基于類的代理请梢。

參考書籍:

1.《Spring揭秘》

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末赠尾,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子毅弧,更是在濱河造成了極大的恐慌气嫁,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,743評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件够坐,死亡現(xiàn)場離奇詭異寸宵,居然都是意外死亡,警方通過查閱死者的電腦和手機(jī)元咙,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,296評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門梯影,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人庶香,你說我怎么就攤上這事甲棍。” “怎么了赶掖?”我有些...
    開封第一講書人閱讀 157,285評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵感猛,是天一觀的道長。 經(jīng)常有香客問我奢赂,道長陪白,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,485評(píng)論 1 283
  • 正文 為了忘掉前任膳灶,我火速辦了婚禮咱士,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘轧钓。我一直安慰自己司致,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,581評(píng)論 6 386
  • 文/花漫 我一把揭開白布聋迎。 她就那樣靜靜地躺著,像睡著了一般枣耀。 火紅的嫁衣襯著肌膚如雪霉晕。 梳的紋絲不亂的頭發(fā)上庭再,一...
    開封第一講書人閱讀 49,821評(píng)論 1 290
  • 那天,我揣著相機(jī)與錄音牺堰,去河邊找鬼拄轻。 笑死,一個(gè)胖子當(dāng)著我的面吹牛伟葫,可吹牛的內(nèi)容都是我干的恨搓。 我是一名探鬼主播,決...
    沈念sama閱讀 38,960評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼筏养,長吁一口氣:“原來是場噩夢啊……” “哼斧抱!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起渐溶,我...
    開封第一講書人閱讀 37,719評(píng)論 0 266
  • 序言:老撾萬榮一對(duì)情侶失蹤辉浦,失蹤者是張志新(化名)和其女友劉穎,沒想到半個(gè)月后茎辐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體宪郊,經(jīng)...
    沈念sama閱讀 44,186評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,516評(píng)論 2 327
  • 正文 我和宋清朗相戀三年拖陆,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了弛槐。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,650評(píng)論 1 340
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡依啰,死狀恐怖乎串,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情孔飒,我是刑警寧澤灌闺,帶...
    沈念sama閱讀 34,329評(píng)論 4 330
  • 正文 年R本政府宣布,位于F島的核電站坏瞄,受9級(jí)特大地震影響桂对,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜鸠匀,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,936評(píng)論 3 313
  • 文/蒙蒙 一蕉斜、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧缀棍,春花似錦宅此、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,757評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至青瀑,卻和暖如春璧亮,著一層夾襖步出監(jiān)牢的瞬間萧诫,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,991評(píng)論 1 266
  • 我被黑心中介騙來泰國打工枝嘶, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留帘饶,地道東北人。 一個(gè)月前我還...
    沈念sama閱讀 46,370評(píng)論 2 360
  • 正文 我出身青樓群扶,卻偏偏與公主長得像及刻,于是被迫代替她去往敵國和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子竞阐,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,527評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容