最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會員登陸 & 注冊

Spring對JDK和CgLib動態(tài)代理該怎么選?

2023-03-21 17:43 作者:云和數(shù)據(jù)何老師  | 我要投稿


Spring框架在實現(xiàn)動態(tài)代理時,提供了兩種選擇:基于JDK的動態(tài)代理和基于CgLib的動態(tài)代理。

JDK動態(tài)代理只能代理實現(xiàn)了接口的類,而CgLib動態(tài)代理可以代理沒有實現(xiàn)接口的類。因此,如果需要代理的類實現(xiàn)了接口,建議使用JDK動態(tài)代理;如果需要代理的類沒有實現(xiàn)接口,或者需要對類的方法進行代理而不是接口的方法,建議使用CgLib動態(tài)代理。

另外,由于JDK動態(tài)代理是基于接口的,因此它的代理效率比CgLib動態(tài)代理要高。在大多數(shù)情況下,建議首選JDK動態(tài)代理,只有在必要的情況下才考慮使用CgLib動態(tài)代理。

需要注意的是,如果需要代理的類已經(jīng)是final類,則無法使用CgLib動態(tài)代理代理該類。此外,CgLib動態(tài)代理也可能會影響應用程序的性能,因此在使用CgLib動態(tài)代理時,需要謹慎評估其對性能的影響。

下面是使用Spring基于JDK和CgLib動態(tài)代理的示例代碼。

假設我們有一個接口UserService和一個實現(xiàn)類UserServiceImpl,代碼如下:

public interface UserService { ? ?void addUser();}public class UserServiceImpl implements UserService { ? ?@Override ? ?public void addUser() { ? ? ? ?System.out.println("Add user."); ? ?}}

現(xiàn)在我們想要在調用UserServiceImpl的addUser()方法之前和之后執(zhí)行一些額外的邏輯。我們可以使用Spring的動態(tài)代理功能來實現(xiàn)這一點。

基于JDK的動態(tài)代理示例代碼如下:

import java.lang.reflect.InvocationHandler;import java.lang.reflect.Method;import java.lang.reflect.Proxy;public class UserServiceProxy implements InvocationHandler { ? ?private UserService userService; ? ?public UserServiceProxy(UserService userService) { ? ? ? ?this.userService = userService; ? ?} ? ?@Override ? ?public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { ? ? ? ?System.out.println("Before addUser."); ? ? ? ?Object result = method.invoke(userService, args); ? ? ? ?System.out.println("After addUser."); ? ? ? ?return result; ? ?} ? ?public static void main(String[] args) { ? ? ? ?UserService userService = new UserServiceImpl(); ? ? ? ?InvocationHandler handler = new UserServiceProxy(userService); ? ? ? ?UserService userServiceProxy = (UserService) Proxy.newProxyInstance( ? ? ? ? ? ? ? ?userService.getClass().getClassLoader(), ? ? ? ? ? ? ? ?userService.getClass().getInterfaces(), ? ? ? ? ? ? ? ?handler ? ? ? ?); ? ? ? ?userServiceProxy.addUser(); ? ?}}

基于CgLib的動態(tài)代理示例代碼如下:

import net.sf.cglib.proxy.MethodInterceptor;import net.sf.cglib.proxy.MethodProxy;import net.sf.cglib.proxy.Enhancer;public class UserServiceCgLibProxy implements MethodInterceptor { ? ?private UserService userService; ? ?public UserServiceCgLibProxy(UserService userService) { ? ? ? ?this.userService = userService; ? ?} ? ?@Override ? ?public Object intercept(Object obj, Method method, Object[] args, MethodProxy proxy) throws Throwable { ? ? ? ?System.out.println("Before addUser."); ? ? ? ?Object result = proxy.invoke(userService, args); ? ? ? ?System.out.println("After addUser."); ? ? ? ?return result; ? ?} ? ?public static void main(String[] args) { ? ? ? ?UserService userService = new UserServiceImpl(); ? ? ? ?Enhancer enhancer = new Enhancer(); ? ? ? ?enhancer.setSuperclass(userService.getClass()); ? ? ? ?enhancer.setCallback(new UserServiceCgLibProxy(userService)); ? ? ? ?UserService userServiceProxy = (UserService) enhancer.create(); ? ? ? ?userServiceProxy.addUser(); ? ?}}

以上兩個示例代碼中,我們都定義了一個代理類,并實現(xiàn)了InvocationHandler或MethodInterceptor接口來處理方法調用。在main方法中,我們通過Proxy.newProxyInstance()或Enhancer.create()方法來創(chuàng)建代理對象,并調用其方法,此時代理對象會自動調用我們定義的invoke()或intercept()方法來執(zhí)行相應的邏輯。


Spring對JDK和CgLib動態(tài)代理該怎么選?的評論 (共 條)

分享到微博請遵守國家法律
江西省| 凤台县| 普格县| 东源县| 武威市| 西乌| 纳雍县| 牟定县| 南开区| 东丰县| 灯塔市| 阿荣旗| 宽甸| 开平市| 新建县| 蓬溪县| 老河口市| 烟台市| 七台河市| 武城县| 屯留县| 马山县| 泸定县| 潞城市| 余庆县| 澄江县| 文水县| 石阡县| 栾城县| 桃园县| 泽州县| 子长县| 石门县| 德令哈市| 镶黄旗| 芮城县| 宣武区| 晋宁县| 醴陵市| 河西区| 昌都县|