成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

Java設(shè)計(jì)模式綜合運(yùn)用(動(dòng)態(tài)代理+Spring AOP)

王晗 / 1176人閱讀

摘要:動(dòng)態(tài)代理的核心是接口和類。以上結(jié)果說明它生成的代理類為,說明是代理。測(cè)試前提實(shí)現(xiàn)接口測(cè)試類使用接口方式注入代理方式必須以接口方式注入測(cè)試配置為,運(yùn)行結(jié)果如下實(shí)際校驗(yàn)邏輯。。。。

本文也同步發(fā)布至簡書,地址:https://www.jianshu.com/p/f70...

AOP設(shè)計(jì)模式通常運(yùn)用在日志,校驗(yàn)等業(yè)務(wù)場(chǎng)景,本文將簡單介紹基于Spring的AOP代理模式的運(yùn)用。

1. 代理模式 1.1 概念

代理(Proxy)是一種提供了對(duì)目標(biāo)對(duì)象另外的訪問方式,即通過代理對(duì)象訪問目標(biāo)對(duì)象。這樣做的好處是:可以在目標(biāo)對(duì)象實(shí)現(xiàn)的基礎(chǔ)上,增強(qiáng)額外的功能操作,即擴(kuò)展目標(biāo)對(duì)象的功能。
這里使用到編程中的一個(gè)思想:不要隨意去修改別人已經(jīng)寫好的代碼或者方法,如果需改修改,可以通過代理的方式來擴(kuò)展該方法。

1.2 靜態(tài)代理

靜態(tài)代理在使用時(shí),需要定義接口或者父類,被代理對(duì)象與代理對(duì)象一起實(shí)現(xiàn)相同的接口或者是繼承相同父類。

1.3 動(dòng)態(tài)代理 1.3.1 JDK代理

JDK動(dòng)態(tài)代理有以下特點(diǎn):
1.代理對(duì)象,不需要實(shí)現(xiàn)接口
2.代理對(duì)象的生成,是利用JDK的API,動(dòng)態(tài)的在內(nèi)存中構(gòu)建代理對(duì)象(需要我們指定創(chuàng)建代理對(duì)象/目標(biāo)對(duì)象實(shí)現(xiàn)的接口的類型)
3.動(dòng)態(tài)代理也叫做:JDK代理,接口代理

1.3.2 CGLib代理

Cglib代理,也叫作子類代理,它是在內(nèi)存中構(gòu)建一個(gè)子類對(duì)象從而實(shí)現(xiàn)對(duì)目標(biāo)對(duì)象功能的擴(kuò)展。

JDK的動(dòng)態(tài)代理有一個(gè)限制,就是使用動(dòng)態(tài)代理的對(duì)象必須實(shí)現(xiàn)一個(gè)或多個(gè)接口,如果想代理沒有實(shí)現(xiàn)接口的類,就可以使用Cglib實(shí)現(xiàn)。

Cglib是一個(gè)強(qiáng)大的高性能的代碼生成包,它可以在運(yùn)行期擴(kuò)展java類與實(shí)現(xiàn)java接口。它廣泛的被許多AOP的框架使用,例如Spring AOP和synaop,為他們提供方法的interception(攔截)。

Cglib包的底層是通過使用一個(gè)小而塊的字節(jié)碼處理框架ASM來轉(zhuǎn)換字節(jié)碼并生成新的類。不鼓勵(lì)直接使用ASM,因?yàn)樗竽惚仨殞?duì)JVM內(nèi)部結(jié)構(gòu)包括class文件的格式和指令集都很熟悉。

2. Spring AOP 2.1 Spring AOP原理

AOP實(shí)現(xiàn)的關(guān)鍵在于AOP框架自動(dòng)創(chuàng)建的AOP代理,AOP代理主要分為靜態(tài)代理和動(dòng)態(tài)代理,靜態(tài)代理的代表為AspectJ;而動(dòng)態(tài)代理則以Spring AOP為代表。本文以Spring AOP的實(shí)現(xiàn)進(jìn)行分析和介紹。

Spring AOP使用的動(dòng)態(tài)代理,所謂的動(dòng)態(tài)代理就是說AOP框架不會(huì)去修改字節(jié)碼,而是在內(nèi)存中臨時(shí)為方法生成一個(gè)AOP對(duì)象,這個(gè)AOP對(duì)象包含了目標(biāo)對(duì)象的全部方法,并且在特定的切點(diǎn)做了增強(qiáng)處理,并回調(diào)原對(duì)象的方法。

Spring AOP中的動(dòng)態(tài)代理主要有兩種方式,JDK動(dòng)態(tài)代理CGLIB動(dòng)態(tài)代理。JDK動(dòng)態(tài)代理通過反射來接收被代理的類,并且要求被代理的類必須實(shí)現(xiàn)一個(gè)接口。JDK動(dòng)態(tài)代理的核心是InvocationHandler接口和Proxy類。

如果目標(biāo)類沒有實(shí)現(xiàn)接口,那么Spring AOP會(huì)選擇使用CGLIB來動(dòng)態(tài)代理目標(biāo)類。CGLIB(Code Generation Library),是一個(gè)代碼生成的類庫,可以在運(yùn)行時(shí)動(dòng)態(tài)的生成某個(gè)類的子類,注意,CGLIB是通過繼承的方式做的動(dòng)態(tài)代理,因此如果某個(gè)類被標(biāo)記為final,那么它是無法使用CGLIB做動(dòng)態(tài)代理的。

注意:以上片段引用自文章Spring AOP的實(shí)現(xiàn)原理,如有冒犯,請(qǐng)聯(lián)系筆者刪除之,謝謝!

Spring AOP判斷是JDK代理還是CGLib代理的源碼如下(來自org.springframework.aop.framework.DefaultAopProxyFactory):

@Override
public AopProxy createAopProxy(AdvisedSupport config) throws AopConfigException {
    if (config.isOptimize() || config.isProxyTargetClass() || hasNoUserSuppliedProxyInterfaces(config)) {
        Class targetClass = config.getTargetClass();
        if (targetClass == null) {
            throw new AopConfigException("TargetSource cannot determine target class: " +
                                         "Either an interface or a target is required for proxy creation.");
        }
        if (targetClass.isInterface() || Proxy.isProxyClass(targetClass)) {
            return new JdkDynamicAopProxy(config);
        }
        return new ObjenesisCglibAopProxy(config);
    }
    else {
        return new JdkDynamicAopProxy(config);
    }
}

由代碼發(fā)現(xiàn),如果配置proxyTargetClass = true了并且目標(biāo)類非接口的情況,則會(huì)使用CGLib代理,否則使用JDK代理。

2.2 Spring AOP配置

Spring AOP的配置有兩種方式,XML和注解方式。

2.2.1 XML配置

首先需要引入AOP相關(guān)的DTD配置,如下:

然后需要引入AOP自動(dòng)代理配置:




2.2.2 注解配置

Java配置類如下:

/**
 * 相當(dāng)于Spring.xml配置文件的作用
 * @author landyl
 * @create 2:44 PM 09/30/2018
 */
@Configuration
//@EnableLoadTimeWeaving(aspectjWeaving = EnableLoadTimeWeaving.AspectJWeaving.ENABLED)
@EnableAspectJAutoProxy(proxyTargetClass = true)
//@EnableAspectJAutoProxy
@ComponentScan(basePackages = "org.landy")
public class ApplicationConfigure {

    @Bean
    public ApplicationUtil getApplicationUtil() {
        return new ApplicationUtil();
    }

}
2.2.3 依賴包

需要使用Spring AOP需要引入以下Jar包:


    5.0.8.RELEASE
    1.8.7



    org.aspectj
    aspectjrt
    ${aspectj.version}



    org.aspectj
    aspectjweaver
    ${aspectj.version}


    org.springframework
    spring-aop
    ${spring.version}
    compile
2.2.4 配置單元測(cè)試

以上兩種配置方式,單元測(cè)試需要注意一個(gè)地方就是引入配置的方式不一樣,區(qū)別如下:

XML方式

@ContextConfiguration(locations = { "classpath:spring.xml" }) //加載配置文件
@RunWith(SpringJUnit4ClassRunner.class)  //使用junit4進(jìn)行測(cè)試
public class SpringTestBase extends AbstractJUnit4SpringContextTests {
}

注解方式

@ContextConfiguration(classes = ApplicationConfigure.class)
@RunWith(SpringJUnit4ClassRunner.class)  //使用junit4進(jìn)行測(cè)試
public class SpringTestBase extends AbstractJUnit4SpringContextTests {
}

配置好了以后,以后所有的測(cè)試類都繼承SpringTestBase類即可。

3. 項(xiàng)目演示 3.1 邏輯梳理

本文將以校驗(yàn)?zāi)硞€(gè)業(yè)務(wù)邏輯為例說明Spring AOP代理模式的運(yùn)用。

按照慣例,還是以客戶信息更新校驗(yàn)為例,假設(shè)有個(gè)校驗(yàn)類如下:

/**
 * @author landyl
 * @create 2:22 PM 09/30/2018
 */
@Component
public class CustomerUpdateRule implements UpdateRule {

    //利用自定義注解,進(jìn)行AOP切面編程,進(jìn)行其他業(yè)務(wù)邏輯的校驗(yàn)操作
    @StatusCheck
    public CheckResult check(String updateStatus, String currentStatus) {
        System.out.println("CustomerUpdateRule:在此還有其他業(yè)務(wù)校驗(yàn)邏輯。。。。"+updateStatus + "____" + currentStatus);
        return new CheckResult();
    }

}

此時(shí)我們需要定義一個(gè)注解StatusCheck類,如下:

/**
 * @author landyl
 * @create 2:37 PM 09/23/2018
 */
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface StatusCheck {

}

此注解僅為一個(gè)標(biāo)記注解。最為主要的就是定義一個(gè)更新校驗(yàn)的切面類,定義好切入點(diǎn)。

@Component
@Aspect
public class StatusCheckAspect {
    private static final int VALID_UPDATE = Constants.UPDATE_STATUS_VALID_UPDATE;

    private static final Logger LOGGER = LoggerFactory.getLogger(StatusCheckAspect.class);


    //定義切入點(diǎn):定義一個(gè)方法,用于聲明切面表達(dá)式,一般地,該方法中不再需要添加其他的代碼
    @Pointcut("execution(* org.landy.business.rules..*(..)) && @annotation(org.landy.business.rules.annotation.StatusCheck)")
    public void declareJoinPointExpression() {}

    /**
     * 前置通知
     * @param joinPoint
     */
    @Before("declareJoinPointExpression()")
    public void beforeCheck(JoinPoint joinPoint) {
        System.out.println("before statusCheck method start ...");
        System.out.println(joinPoint.getSignature());
        //獲得自定義注解的參數(shù)
        String methodName = joinPoint.getSignature().getName();
        List args = Arrays.asList(joinPoint.getArgs());
        System.out.println("The method " + methodName + " begins with " + args);
        System.out.println("before statusCheck method end ...");
    }
}    

具體代碼請(qǐng)參見github。

3.2 邏輯測(cè)試 3.2.1 JDK動(dòng)態(tài)代理

JDK動(dòng)態(tài)代理必須實(shí)現(xiàn)一個(gè)接口,本文實(shí)現(xiàn)UpdateRule為例,

public interface UpdateRule {
    CheckResult check(String updateStatus, String currentStatus);
}

并且AOP需要做如下配置:

XML方式:


注解方式:

@Configuration
@EnableAspectJAutoProxy
@ComponentScan(basePackages = "org.landy")
public class ApplicationConfigure {

}

在測(cè)試類中,必須使用接口方式注入:

/**
 * @author landyl
 * @create 2:32 PM 09/30/2018
 */
public class CustomerUpdateRuleTest extends SpringTestBase {

    @Autowired
    private UpdateRule customerUpdateRule; //JDK代理方式必須以接口方式注入

    @Test
    public void customerCheckTest() {
        System.out.println("proxy class:" + customerUpdateRule.getClass());
        CheckResult checkResult = customerUpdateRule.check("2","currentStatus");
        AssertUtil.assertTrue(checkResult.getCheckResult() == 0,"與預(yù)期結(jié)果不一致");
    }

}

測(cè)試結(jié)果如下:

proxy class:class com.sun.proxy.$Proxy34
2018-10-05  14:18:17.515 [main] INFO  org.landy.business.rules.aop.StatusCheckAspect - Status check around method start ....
before statusCheck method start ...
CheckResult org.landy.business.rules.stategy.UpdateRule.check(String,String)
The method check begins with [2, currentStatus]
before statusCheck method end ...
CustomerUpdateRule:在此還有其他業(yè)務(wù)校驗(yàn)邏輯。。。。2____currentStatus
2018-10-05  14:18:17.526 [main] INFO  org.landy.business.rules.aop.StatusCheckAspect - execute the target method,the return result_msg:null
2018-10-05  14:18:17.526 [main] INFO  org.landy.business.rules.aop.StatusCheckAspect - Status check around method end ....

以上結(jié)果說明它生成的代理類為$Proxy34,說明是JDK代理。

3.2.2 CGLib動(dòng)態(tài)代理

使用CGlib可以不用接口(經(jīng)測(cè)試,用了接口好像也沒問題)。在測(cè)試類中,必須使用實(shí)現(xiàn)類方式注入:

 @Autowired
 private CustomerUpdateRule customerUpdateRule;

并且AOP需要做如下配置:

XML方式:


注解方式:

@Configuration
@EnableAspectJAutoProxy(proxyTargetClass = true)
@ComponentScan(basePackages = "org.landy")
public class ApplicationConfigure {

}

不過發(fā)現(xiàn)我并未配置proxyTargetClass = true也可以正常運(yùn)行,有點(diǎn)奇怪。(按理說,默認(rèn)是為false)

運(yùn)行結(jié)果生成的代理類為:

proxy class:class org.landy.business.rules.stategy.CustomerUpdateRule$$EnhancerBySpringCGLIB$$d1075aca

說明是CGLib代理。

經(jīng)過進(jìn)一步測(cè)試,發(fā)現(xiàn)如果我實(shí)現(xiàn)接口UpdateRule,但是注入方式使用類注入方式:

@Autowired
private CustomerUpdateRule customerUpdateRule;

并且把proxyTargetClass設(shè)置為false,則運(yùn)行就報(bào)如下錯(cuò)誤:

嚴(yán)重: Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6a024a67] to prepare test instance [org.landy.business.rules.CustomerUpdateRuleTest@7fcf2fc1]
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name "org.landy.business.rules.CustomerUpdateRuleTest": Unsatisfied dependency expressed through field "customerUpdateRule"; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named "customerUpdateRule" is expected to be of type "org.landy.business.rules.stategy.CustomerUpdateRule" but was actually of type "com.sun.proxy.$Proxy34"
    at org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:586)

以上說明了一個(gè)問題,使用接口實(shí)現(xiàn)的方式則會(huì)被默認(rèn)為JDK代理方式,如果需要使用CGLib代理,需要把proxyTargetClass設(shè)置為true。

3.2.3 綜合測(cè)試

為了再次驗(yàn)證Spring AOP如何選擇JDK代理還是CGLib代理,在此進(jìn)行一個(gè)綜合測(cè)試。

測(cè)試前提:

實(shí)現(xiàn)UpdateRule接口

測(cè)試類使用接口方式注入

@Autowired
private UpdateRule customerUpdateRule; //JDK代理方式必須以接口方式注入

測(cè)試:

配置proxyTargetClasstrue,運(yùn)行結(jié)果如下:

customerCheckTest
proxy class:class org.landy.business.rules.stategy.CustomerUpdateRule$$EnhancerBySpringCGLIB$$f5a34953
2018-10-05  15:28:42.820 [main] INFO  org.landy.business.rules.aop.StatusCheckAspect - Status check around method start ....
2018-10-05  15:28:42.823 [main] INFO  org.landy.business.rules.aop.StatusCheckAspect - Status check dynamic AOP,paramValues:2
AOP實(shí)際校驗(yàn)邏輯。。。。2----currentStatus
before statusCheck method start ...
target class:org.landy.business.rules.stategy.CustomerUpdateRule@7164ca4c

說明為CGLIb代理。

配置proxyTargetClassfalse,運(yùn)行結(jié)果如下:

proxy class:class com.sun.proxy.$Proxy34
2018-10-05  15:20:59.894 [main] INFO  org.landy.business.rules.aop.StatusCheckAspect - Status check around method start ....
before statusCheck method start ...
target class:org.landy.business.rules.stategy.CustomerUpdateRule@ae3540e

說明為JDK代理。

以上測(cè)試說明,指定proxy-target-class為true可強(qiáng)制使用cglib。

3.3 常見問題

如果使用JDK動(dòng)態(tài)代理,未使用接口方式注入(或者使用接口實(shí)現(xiàn),并未配置proxyTargetClass為true),則會(huì)出現(xiàn)以下異常信息:

嚴(yán)重: Caught exception while allowing TestExecutionListener [org.springframework.test.context.support.DependencyInjectionTestExecutionListener@6a024a67] to prepare test instance [org.landy.business.rules.CustomerUpdateRuleTest@7fcf2fc1]
org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name "org.landy.business.rules.CustomerUpdateRuleTest": Unsatisfied dependency expressed through field "customerUpdateRule"; nested exception is org.springframework.beans.factory.BeanNotOfRequiredTypeException: Bean named "customerUpdateRule" is expected to be of type "org.landy.business.rules.stategy.CustomerUpdateRule" but was actually of type "com.sun.proxy.$Proxy34"

與生成的代理類型不一致,有興趣的同學(xué)可以Debug DefaultAopProxyFactory類中的createAopProxy方法即可知道兩種動(dòng)態(tài)代理的區(qū)別。

事例代碼地址:https://github.com/landy8530/DesignPatterns

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/74530.html

相關(guān)文章

  • Spring筆記03_AOP

    摘要:介紹什么是在軟件業(yè),為的縮寫,意為面向切面編程,通過預(yù)編譯方式和運(yùn)行期動(dòng)態(tài)代理實(shí)現(xiàn)程序功能的統(tǒng)一維護(hù)的一種技術(shù)。切面是切入點(diǎn)和通知引介的結(jié)合。切面類權(quán)限校驗(yàn)。。。 1. AOP 1.1 AOP介紹 1.1.1 什么是AOP 在軟件業(yè),AOP為Aspect Oriented Programming的縮寫,意為:面向切面編程,通過預(yù)編譯方式和運(yùn)行期動(dòng)態(tài)代理實(shí)現(xiàn)程序功能的統(tǒng)一維護(hù)的一種技術(shù)...

    blair 評(píng)論0 收藏0
  • 慕課網(wǎng)_《探秘Spring AOP》學(xué)習(xí)總結(jié)

    時(shí)間:2017年09月03日星期日說明:本文部分內(nèi)容均來自慕課網(wǎng)。@慕課網(wǎng):http://www.imooc.com 教學(xué)源碼:https://github.com/zccodere/s...學(xué)習(xí)源碼:https://github.com/zccodere/s... 第一章:課程介紹 1-1 面向切面 課程章節(jié) 概覽 AOP使用 AOP原理 AOP開源運(yùn)用 課程實(shí)戰(zhàn) 課程總結(jié) 面向切面編程是一種...

    Tony_Zby 評(píng)論0 收藏0
  • 慕課網(wǎng)_《Spring入門篇》學(xué)習(xí)總結(jié)

    摘要:入門篇學(xué)習(xí)總結(jié)時(shí)間年月日星期三說明本文部分內(nèi)容均來自慕課網(wǎng)。主要的功能是日志記錄,性能統(tǒng)計(jì),安全控制,事務(wù)處理,異常處理等等。 《Spring入門篇》學(xué)習(xí)總結(jié) 時(shí)間:2017年1月18日星期三說明:本文部分內(nèi)容均來自慕課網(wǎng)。@慕課網(wǎng):http://www.imooc.com教學(xué)示例源碼:https://github.com/zccodere/s...個(gè)人學(xué)習(xí)源碼:https://git...

    Ververica 評(píng)論0 收藏0
  • <spring 3.x企業(yè)應(yīng)用開發(fā)實(shí)戰(zhàn)>讀書筆記-aop基礎(chǔ)

    摘要:是什么是面向切面編程的簡稱。負(fù)責(zé)實(shí)施切面,它將切面所定義的橫切邏輯織入到切面所指定的連接點(diǎn)鐘。靜態(tài)正則表達(dá)式匹配切面是正則表達(dá)式方法匹配的切面實(shí)現(xiàn)類。流程切面的流程切面由和實(shí)現(xiàn)。 aop是什么 aop是面向切面編程(aspect oriented programing)的簡稱。aop的出現(xiàn)并不是要完全替代oop,僅是作為oop的有益補(bǔ)充。aop的應(yīng)用場(chǎng)合是有限的,一般只適合于那些具有橫...

    isaced 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

王晗

|高級(jí)講師

TA的文章

閱讀更多
最新活動(dòng)
閱讀需要支付1元查看
<