您好,登錄后才能下訂單哦!
這篇文章主要介紹“如何編寫代碼來(lái)實(shí)現(xiàn)內(nèi)部之間調(diào)用攔截”,在日常操作中,相信很多人在如何編寫代碼來(lái)實(shí)現(xiàn)內(nèi)部之間調(diào)用攔截問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”如何編寫代碼來(lái)實(shí)現(xiàn)內(nèi)部之間調(diào)用攔截”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
下面是CGLib的原生寫法(使用net.sf.cglib.proxy.*包內(nèi)的類實(shí)現(xiàn))
class Foo {public void fun1(){ System.out.println("fun1"); fun2(); }public void fun2() { System.out.println("fun2"); } }class CGlibProxyEnhancer implements MethodInterceptor{public Object getProxy(Class clazz) { Enhancer enhancer = new Enhancer(); enhancer.setSuperclass(clazz); enhancer.setCallback(this);return enhancer.create(); }@Overridepublic Object intercept(Object obj, Method method, Object[] args, MethodProxy proxy) throws Throwable { System.out.print("before ");Object result = proxy.invokeSuper(obj,args);return result; } }public class Test {public static void main(String[] args) { CGlibProxyEnhancer pf = new CGlibProxyEnhancer(); Foo foo = (Foo) pf.getProxy(Foo.class); foo.fun1(); } }
打印結(jié)果是:
before fun1
before fun2
可以看到,雖然fun2()是通過(guò)foo.fun1()調(diào)用的,但fun()2依然能被代理。
但如果用Spring AOP那套基本寫法的話:
class Foo {public void fun1() {System.out.println("fun1"); fun2(); }public void fun2() {System.out.println("fun2"); } }class Before implements MethodBeforeAdvice {public void before(Method method, Object[] objects, Object o) throws Throwable {System.out.print("before "); } }public class TestCGLib {public static void main(String[] args) { Foo foo = new Foo(); BeforeAdvice advice = new Before(); ProxyFactory pf = new ProxyFactory(); pf.setOptimize(true);//啟用Cglib2AopProxy創(chuàng)建代理 pf.setProxyTargetClass(true); pf.setTarget(foo); pf.addAdvice(advice); Foo proxy = (Foo) pf.getProxy(); proxy.fun1(); } }
輸出結(jié)果是:
before fun1
fun2
可見fun2方法沒有被代理。
這個(gè)帖子中還說(shuō)到了如何將cglib中的fun2改為private則最終結(jié)果與常規(guī)AOP的一樣.
到此,關(guān)于“如何編寫代碼來(lái)實(shí)現(xiàn)內(nèi)部之間調(diào)用攔截”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。