久久福利_99r_国产日韩在线视频_直接看av的网站_中文欧美日韩_久久一

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

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

瀏覽:9日期: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
相關文章:
主站蜘蛛池模板: 91亚洲国产精品 | 天堂网中文在线 | 欧美国产精品一区 | 日韩在线| 日韩手机专区 | 日本色网址 | 久久久久久久国产精品 | 国产精品久久久久久久7电影 | 日韩精品一区二 | 一级片在线免费观看视频 | 一区二区三区高清 | 天天干欧美 | av免费网站 | 精品久久久久久久久久久久 | 一区免费看 | 巴西性猛交xxxx免费看久久久 | 日韩中文字幕在线看 | 第一色视频 | 性一级录像片片视频免费看 | 亚洲一区av| 黄色免费在线观看 | 精品视频网 | 久久久久久毛片免费观看 | 99久久精品一区二区成人 | 成年免费视频 | 国产小视频在线观看 | 久久蜜桃精品一区二区三区综合网 | 欧美日韩国产一区二区 | 日本a视频 | 黄色毛片在线看 | 午夜精品久久久久久99热软件 | 亚洲精品乱码久久久久久蜜桃91 | 吊视频一区二区三区 | 伊人无码高清 | 欧美日韩亚洲成人 | 日韩免费网站 | 日韩欧美国产精品综合嫩v 久久久久久国产精品高清 国产目拍亚洲精品99久久精品 | 91精品久久久久久久久久小网站 | 一级毛片免费播放 | 亚洲精品免费观看 | 久久久久91 |