2021-03-20 13:05:40 +08:00
|
|
|
package cn.iocoder.dashboard.util;
|
|
|
|
|
2021-03-21 22:55:15 +08:00
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
2021-03-20 13:05:40 +08:00
|
|
|
import org.springframework.aop.framework.AdvisedSupport;
|
|
|
|
import org.springframework.aop.framework.AopProxy;
|
|
|
|
import org.springframework.aop.support.AopUtils;
|
|
|
|
|
|
|
|
/**
|
2021-04-17 10:00:49 +08:00
|
|
|
* Spring AOP 工具类
|
|
|
|
*
|
|
|
|
* 参考波克尔 http://www.bubuko.com/infodetail-3471885.html 实现
|
2021-03-20 13:05:40 +08:00
|
|
|
*/
|
|
|
|
public class AopTargetUtils {
|
|
|
|
|
|
|
|
/**
|
2021-04-17 10:00:49 +08:00
|
|
|
* 获取代理的目标对象
|
2021-03-20 13:05:40 +08:00
|
|
|
*
|
|
|
|
* @param proxy 代理对象
|
2021-04-17 10:00:49 +08:00
|
|
|
* @return 目标对象
|
2021-03-20 13:05:40 +08:00
|
|
|
*/
|
|
|
|
public static Object getTarget(Object proxy) throws Exception {
|
2021-04-17 10:00:49 +08:00
|
|
|
// 不是代理对象
|
2021-03-20 13:05:40 +08:00
|
|
|
if (!AopUtils.isAopProxy(proxy)) {
|
2021-04-17 10:00:49 +08:00
|
|
|
return proxy;
|
2021-03-20 13:05:40 +08:00
|
|
|
}
|
2021-04-17 10:00:49 +08:00
|
|
|
// Jdk 代理
|
2021-03-20 13:05:40 +08:00
|
|
|
if (AopUtils.isJdkDynamicProxy(proxy)) {
|
|
|
|
return getJdkDynamicProxyTargetObject(proxy);
|
|
|
|
}
|
2021-04-17 10:00:49 +08:00
|
|
|
// Cglib 代理
|
|
|
|
return getCglibProxyTargetObject(proxy);
|
2021-03-20 13:05:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private static Object getCglibProxyTargetObject(Object proxy) throws Exception {
|
2021-03-21 22:55:15 +08:00
|
|
|
Object dynamicAdvisedInterceptor = BeanUtil.getFieldValue(proxy, "CGLIB$CALLBACK_0");
|
|
|
|
AdvisedSupport advisedSupport = (AdvisedSupport) BeanUtil.getFieldValue(dynamicAdvisedInterceptor, "advised");
|
2021-04-17 10:00:49 +08:00
|
|
|
return advisedSupport.getTargetSource().getTarget();
|
2021-03-20 13:05:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
private static Object getJdkDynamicProxyTargetObject(Object proxy) throws Exception {
|
2021-03-21 22:55:15 +08:00
|
|
|
AopProxy aopProxy = (AopProxy) BeanUtil.getFieldValue(proxy, "h");
|
|
|
|
AdvisedSupport advisedSupport = (AdvisedSupport) BeanUtil.getFieldValue(aopProxy, "advised");
|
2021-04-17 10:00:49 +08:00
|
|
|
return advisedSupport.getTargetSource().getTarget();
|
2021-03-20 13:05:40 +08:00
|
|
|
}
|
|
|
|
|
2021-04-17 10:00:49 +08:00
|
|
|
}
|