昨天晚上一哥們須要獲取代理對象的目標對象,查找了文檔發現沒有相應的工具類,所以本身寫了一個分享給你們。能獲取JDK動態代理/CGLIB代理對象代理的目標對象。java
問題描述:spring
我如今遇到個棘手的問題,要經過spring託管的service類保存對象,這個類是經過反射拿到的,通過實驗發現這個類只能反射取得sservice實現了接口的方法,而extends類的方法一概不出現,debug後發現這個servie實例被spring替換成jdkdynmicproxy類,而不是原始對象了,,它裏面只有service繼承的接口方法,而沒有extends 過的super class方法,怎麼調用原生對象的方法!!!!!工具
用託管的spring service類調用getClass().getName()方法,發現輸出都是$proxy43這類東西!!debug
經過此種方式獲取目標對象是不可靠的,或者說任何獲取目標對象的方式都是不可靠的,由於TargetSource,TargetSource中存放了目標對象,但TargetSource有不少種實現,默認咱們使用的是SingletonTargetSource ,但還有其餘的好比ThreadLocalTargetSource、CommonsPoolTargetSource 等等。代理
這也是爲何spring沒有提供獲取目標對象的API。code
Java代碼 對象
import java.lang.reflect.Field; import org.springframework.aop.framework.AdvisedSupport; import org.springframework.aop.framework.AopProxy; import org.springframework.aop.support.AopUtils; public class AopTargetUtils { /** * 獲取 目標對象 * @param proxy 代理對象 * @return * @throws Exception */ public static Object getTarget(Object proxy) throws Exception { if(!AopUtils.isAopProxy(proxy)) { return proxy;//不是代理對象 } if(AopUtils.isJdkDynamicProxy(proxy)) { return getJdkDynamicProxyTargetObject(proxy); } else { //cglib return getCglibProxyTargetObject(proxy); } } private static Object getCglibProxyTargetObject(Object proxy) throws Exception { Field h = proxy.getClass().getDeclaredField("CGLIB$CALLBACK_0"); h.setAccessible(true); Object dynamicAdvisedInterceptor = h.get(proxy); Field advised = dynamicAdvisedInterceptor.getClass().getDeclaredField("advised"); advised.setAccessible(true); Object target = ((AdvisedSupport)advised.get(dynamicAdvisedInterceptor)).getTargetSource().getTarget(); return target; } private static Object getJdkDynamicProxyTargetObject(Object proxy) throws Exception { Field h = proxy.getClass().getSuperclass().getDeclaredField("h"); h.setAccessible(true); AopProxy aopProxy = (AopProxy) h.get(proxy); Field advised = aopProxy.getClass().getDeclaredField("advised"); advised.setAccessible(true); Object target = ((AdvisedSupport)advised.get(aopProxy)).getTargetSource().getTarget(); return target; } }