国产成人精品久久免费动漫-国产成人精品天堂-国产成人精品区在线观看-国产成人精品日本-a级毛片无码免费真人-a级毛片毛片免费观看久潮喷

您的位置:首頁技術文章
文章詳情頁

Spring如何基于Proxy及cglib實現動態代理

瀏覽:31日期:2023-09-01 10:15:01

spring中提供了兩種動態代理的方式,分別是Java Proxy以及cglib

JavaProxy只能代理接口,而cglib是通過繼承的方式,實現對類的代理

添加一個接口以及對應的實現類

public interface HelloInterface { void sayHello();}

public class HelloInterfaceImpl implements HelloInterface { @Override public void sayHello() { System.out.println('hello'); }}

JavaProxy通過實現InvocationHandler實現代理

public class CustomInvocationHandler implements InvocationHandler { private HelloInterface helloInterface; public CustomInvocationHandler(HelloInterface helloInterface) { this.helloInterface = helloInterface; } @Override public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { System.out.println('before hello for proxy'); Object result = method.invoke(helloInterface, args); System.out.println('after hello for proxy'); return result; }}

而cglib實現MethodInterceptor進行方法上的代理

public class CustomMethodInterceptor implements MethodInterceptor { @Override public Object intercept(Object o, Method method, Object[] objects, MethodProxy methodProxy) throws Throwable { System.out.println('before hello for cglib'); Object result = methodProxy.invokeSuper(o, objects); System.out.println('after hello for cglib'); return result; }}

分別實現調用代碼

public static void main(String[] args) { Enhancer enhancer = new Enhancer(); enhancer.setSuperclass(HelloInterfaceImpl.class); enhancer.setCallback(new CustomMethodInterceptor()); HelloInterface target = (HelloInterface) enhancer.create(); target.sayHello(); CustomInvocationHandler invocationHandler = new CustomInvocationHandler(new HelloInterfaceImpl()); HelloInterface target2 = (HelloInterface) Proxy.newProxyInstance(Demo.class.getClassLoader(), new Class[]{HelloInterface.class}, invocationHandler); target2.sayHello(); }

可以看到對于的代理信息輸出

before hello for cglibhelloafter hello for cglibbefore hello for proxyhelloafter hello for proxy

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持好吧啦網。

標簽: Spring
相關文章:
主站蜘蛛池模板: 久草免费网站 | 成人国产精品免费视频不卡 | 免费视频男女 | 久久国产精品久久国产精品 | 亚洲午夜精品一区二区 | 国产一区亚洲欧美成人 | 日本美女高清在线观看免费 | 2021一本久道 | 99爱在线精品视频免费观看9 | 久99频这里只精品23热 视频 | 美国一级毛片免费看 | 欧美精品一区二区三区在线 | 国产自一区 | 亚洲美女黄视频 | 欧美另类视频在线观看 | 欧美人成片免费看视频不卡 | 欧美一级久久久久久久大 | 久草青青| 99久久免费视频在线观看 | 久久在线观看免费视频 | 91一区| 亚洲精品15p | 国产三级日本三级在线播放 | 97青娱国产盛宴精品视频 | 亚洲日本一区二区三区在线 | 精品国产91在线网 | 亚洲性欧美 | 亚洲品质自拍视频网站 | 欧美一级免费在线观看 | 韩国免费网站成人 | 欧美人性影片免费看 | 亚洲涩涩精品专区 | 手机日韩理论片在线播放 | 女人一级特纯黄大片色 | 中文字幕亚洲一区 | 极品丝袜高跟91白沙发在线 | 欧美色欧美亚洲高清在线视频 | 在线一区二区观看 | 日韩色网站 | 日韩精品在线一区二区 | 国产成人免费全部网站 |