av一区二区在线观看_亚洲男人的天堂网站_日韩亚洲视频_在线成人免费_欧美日韩精品免费观看视频_久草视

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

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

瀏覽:12日期: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
相關文章:
主站蜘蛛池模板: 不卡的av在线 | 日韩资源 | 亚洲三区视频 | 国产精品美女久久久久久免费 | 国产精品视频免费观看 | 精品日韩一区二区 | 激情一区 | 欧美成年人 | 中文字幕视频一区 | 国产亚洲精品久久久久久牛牛 | 日韩毛片 | 欧美二区在线 | 最新黄色在线观看 | 欧美日韩综合精品 | 成人在线免费电影 | 永久免费视频 | 成人福利在线视频 | aaa国产大片 | 综合激情网 | 免费在线观看h片 | 国产欧美日韩精品一区 | 高清国产午夜精品久久久久久 | 91天堂网| 欧美高清视频一区 | 久草视频网站 | 国产精品日产欧美久久久久 | 国产伦精品一区二区三区照片91 | 91啪亚洲精品 | 日韩快播电影 | 黄色一级免费 | 国产一区在线免费 | 天天综合久久 | 精品一区二区三区在线观看国产 | 亚洲欧美在线视频 | avhd101在线成人播放 | 国产精品人人做人人爽 | 伊人久久大香线 | 亚洲成人在线免费 | 日韩三级精品 | 中日韩av | 天天爽夜夜操 |