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

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

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

瀏覽:22日期: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级国产乱理伦片在线观看99 | 久久精品综合 | 亚洲性综合 | 国产精品99 | 韩国福利影视一区二区三区 | 亚洲日本aⅴ片在线观看香蕉 | 亚洲视频在线视频 | 日韩a级 | 在线观看黄网 | 午夜宅男在线永远免费观看网 | 久久精品视频在线观看 | 99在线视频观看 | 国产91久久最新观看地址 | 欧美与黑人午夜性猛交久久久 | 成人国产三级精品 | 性色午夜视频免费男人的天堂 | 国产图片亚洲精品一区 | 一级片国产| 日韩免费一级 | 韩国免费a级毛片 | 久草在线新免费 | 午夜欧美在线 | 成年人网站在线观看视频 | 国产精品1区2区 | 欧美另类 videos黑人极品 | 美国一级毛片oo | 欧美激情性色生活片在线观看 | 手机看片久久高清国产日韩 | 国产欧美一区二区三区沐欲 | 99精品久久99久久久久久 | 精品中文字幕不卡在线视频 | 全部aⅴ极品视觉盛宴精品 全部免费a级毛片 | 亚洲日本在线观看视频 | 亚洲精品99久久久久中文字幕 | 久久厕所视频 | 国产成人三级 | 国产在线观看高清不卡 | 亚洲欧美久久精品1区2区 | 黄男人和女人色一级 |