溫馨提示×

溫馨提示×

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

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

SpringBoot/Spring?AOP默認(rèn)動態(tài)代理方式是什么

發(fā)布時(shí)間:2023-03-29 13:45:09 來源:億速云 閱讀:107 作者:iii 欄目:開發(fā)技術(shù)

這篇文章主要介紹“SpringBoot/Spring AOP默認(rèn)動態(tài)代理方式是什么”的相關(guān)知識,小編通過實(shí)際案例向大家展示操作過程,操作方法簡單快捷,實(shí)用性強(qiáng),希望這篇“SpringBoot/Spring AOP默認(rèn)動態(tài)代理方式是什么”文章能幫助大家解決問題。

1. springboot 2.x 及以上版本 

在 SpringBoot 2.x AOP中會默認(rèn)使用Cglib來實(shí)現(xiàn),但是Spring5中默認(rèn)還是使用jdk動態(tài)代理。Spring AOP 默認(rèn)使用 JDK 動態(tài)代理,如果對象沒有實(shí)現(xiàn)接口,則使用 CGLIB 代理。當(dāng)然,也可以強(qiáng)制使用 CGLIB 代理。

在 SpringBoot 中,通過AopAutoConfiguration來自動裝配AOP.

SpringBoot/Spring?AOP默認(rèn)動態(tài)代理方式是什么

2. Springboot 1.x

Springboot 1.x AOP默認(rèn)還是使用 JDK 動態(tài)代理的

SpringBoot/Spring?AOP默認(rèn)動態(tài)代理方式是什么

3.SpringBoot 2.x 為何默認(rèn)使用 Cglib

因?yàn)镴DK 動態(tài)代理是基于接口的,代理生成的對象只能賦值給接口變量。JDK動態(tài)代理使用Proxy.newProxyInstance()創(chuàng)建代理實(shí)現(xiàn)類,然而第二個(gè)參數(shù)就需要接口類型,如果沒有接口類型就會報(bào)錯。

Proxy.newProxyInstance(iCustomerInstance.getClass().getClassLoader(), iCustomerInstance.getClass().getInterfaces(), this);

而 CGLIB 就不存在這個(gè)問題。因?yàn)?CGLIB 是通過生成子類來實(shí)現(xiàn)的,代理對象無論是賦值給接口還是實(shí)現(xiàn)類,這兩者都是代理對象的父類。

所以在2.x版本以上,將 AOP 默認(rèn)實(shí)現(xiàn)改為了 CGLIB代理。

新建一個(gè)接口

public interface ICustomService {
    void printf();
}

新建一個(gè)ICustomService的實(shí)現(xiàn)類

@Service
public class CustomServiceImpl implements ICustomService {
 
    public void printf() {
 
    }
}

再增加一個(gè)類不實(shí)現(xiàn)任何接口

@Service
public class CustomNoImpl {
 
    public void hello() {
        
    }
}

然后啟動,可以ICustomService和CustomNoImpl看出AOP的代理使用的是CGLIB的動態(tài)代理

SpringBoot/Spring?AOP默認(rèn)動態(tài)代理方式是什么

然后我們通過application.properties配置將代理默認(rèn)設(shè)置為JDK代理。

spring.aop.proxy-target-class=false

然后啟動調(diào)試發(fā)現(xiàn),CustomNoImpl因?yàn)闆]有實(shí)現(xiàn)接口,所以使用的是CGLIB生成的代理,而

customService有接口實(shí)現(xiàn),所以使用JDK的動態(tài)代理

SpringBoot/Spring?AOP默認(rèn)動態(tài)代理方式是什么

關(guān)于“SpringBoot/Spring AOP默認(rèn)動態(tài)代理方式是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點(diǎn)。

向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