您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關(guān)Java中動態(tài)代理如何實(shí)現(xiàn)的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
概要
AOP的攔截功能是由java中的動態(tài)代理來實(shí)現(xiàn)的。說白了,就是在目標(biāo)類的基礎(chǔ)上增加切面邏輯,生成增強(qiáng)的目標(biāo)類(該切面邏輯或者在目標(biāo)類函數(shù)執(zhí)行之前,或者目標(biāo)類函數(shù)執(zhí)行之后,或者在目標(biāo)類函數(shù)拋出異常時候執(zhí)行。Spring中的動態(tài)代理是使用Cglib進(jìn)行實(shí)現(xiàn)的。我們這里分析的是JDK中的動態(tài)代理實(shí)現(xiàn)機(jī)制。
下面我們通過例子快速了解JDK中的動態(tài)代理實(shí)現(xiàn)方式。
示例
需要代理的接口
public interface IHello { public void sayHello(); }
需要代理的類
public class HelloImpl implements IHello { public void sayHello() { System.out.println(“Hello World…”); } }
調(diào)用處理器實(shí)現(xiàn)類
public class ProxyHandler implements InvocationHandler { private Object target; public ProxyHandler(Object target) { this.target = target; } public Object proxyInstance() { return Proxy.newProxyInstance(target.getClass().getClassLoader(), target.getClass().getInterfaces(), this); } public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { System.out.println(“aspect before … “); Object result = method.invoke(this.target, args); System.out.println(“aspect after … “); return result; } }
測試類入口
public class Main { public static void main(String[] args) { ProxyHandler proxy = new ProxyHandler(new HelloImpl()); IHello hello = (IHello) proxy.proxyInstance(); hello.sayHello(); } }
Proxy 源碼解析
newProxyInstance() 方法
省略了不關(guān)心的代碼
public static Object newProxyInstance(ClassLoader loader, Class c){ }
感謝各位的閱讀!關(guān)于“Java中動態(tài)代理如何實(shí)現(xiàn)”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,讓大家可以學(xué)到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。