色综合图-色综合图片-色综合图片二区150p-色综合图区-玖玖国产精品视频-玖玖香蕉视频

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

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

瀏覽:2日期: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
相關文章:
主站蜘蛛池模板: 亚洲免费在线播放 | 国产精品视频永久免费播放 | 日韩精品一区二区三区视频 | 国产成人久久精品麻豆二区 | a级免费| 欧美成人精品一区二区三区 | 欧美日韩一区二区三在线 | 久久久久免费精品国产 | 免费看欧美一级特黄a大片一 | 欧美午夜网 | 日韩欧美中文字幕一区二区三区 | 国产一级毛片亚洲久留木玲 | 91理论片 | 在线免费看黄色 | 日本国产一区二区三区 | 国产欧美日韩综合精品一区二区 | 一级做a爰片性色毛片视频图片 | 久久久www成人免费精品 | 国产国产人免费人成成免视频 | a一级毛片录像带 录像片 | 综合久久久久久 | 美女个护士一级毛片亚洲 | 国产黄a三级三级三级 | 日本阿v视频在线观看高清 日本波多野结衣视频 | 中国老太卖淫播放毛片 | 女初高中福利视频在线观看 | 国产欧美亚洲三区久在线观看 | 久久国产夜色精品噜噜亚洲a | 成人午夜两性视频免费看 | 日韩午夜在线视频 | 亚洲天堂久久精品 | 亚洲国产精品综合欧美 | 久草在线视频免费看 | 亚洲另类激情综合偷自拍 | 国产高清视频在线 | 在线观看欧洲成人免费视频 | ririai99在线视频观看 | 国内精品久久久久久影院老狼 | a级毛片毛片免费观看久潮喷 | 日本精品一区二区三区在线视频 | 国产成人精品视频免费大全 |