commit
135acaf7ba
File diff suppressed because one or more lines are too long
@ -0,0 +1,14 @@
|
|||||||
|
package cn.iocoder.dashboard.framework.tracer.config;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* BizTracer配置类
|
||||||
|
*
|
||||||
|
* @author 麻薯
|
||||||
|
*/
|
||||||
|
@ConfigurationProperties("yudao.tracer")
|
||||||
|
@Data
|
||||||
|
public class TracerProperties {
|
||||||
|
}
|
||||||
@ -1,46 +1,46 @@
|
|||||||
package cn.iocoder.dashboard.util;
|
package cn.iocoder.dashboard.util.sping;
|
||||||
|
|
||||||
import cn.hutool.core.bean.BeanUtil;
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
import org.springframework.aop.framework.AdvisedSupport;
|
import org.springframework.aop.framework.AdvisedSupport;
|
||||||
import org.springframework.aop.framework.AopProxy;
|
import org.springframework.aop.framework.AopProxy;
|
||||||
import org.springframework.aop.support.AopUtils;
|
import org.springframework.aop.support.AopUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Spring AOP 工具类
|
* Spring AOP 工具类
|
||||||
*
|
*
|
||||||
* 参考波克尔 http://www.bubuko.com/infodetail-3471885.html 实现
|
* 参考波克尔 http://www.bubuko.com/infodetail-3471885.html 实现
|
||||||
*/
|
*/
|
||||||
public class AopTargetUtils {
|
public class SpringAopUtils {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取代理的目标对象
|
* 获取代理的目标对象
|
||||||
*
|
*
|
||||||
* @param proxy 代理对象
|
* @param proxy 代理对象
|
||||||
* @return 目标对象
|
* @return 目标对象
|
||||||
*/
|
*/
|
||||||
public static Object getTarget(Object proxy) throws Exception {
|
public static Object getTarget(Object proxy) throws Exception {
|
||||||
// 不是代理对象
|
// 不是代理对象
|
||||||
if (!AopUtils.isAopProxy(proxy)) {
|
if (!AopUtils.isAopProxy(proxy)) {
|
||||||
return proxy;
|
return proxy;
|
||||||
}
|
}
|
||||||
// Jdk 代理
|
// Jdk 代理
|
||||||
if (AopUtils.isJdkDynamicProxy(proxy)) {
|
if (AopUtils.isJdkDynamicProxy(proxy)) {
|
||||||
return getJdkDynamicProxyTargetObject(proxy);
|
return getJdkDynamicProxyTargetObject(proxy);
|
||||||
}
|
}
|
||||||
// Cglib 代理
|
// Cglib 代理
|
||||||
return getCglibProxyTargetObject(proxy);
|
return getCglibProxyTargetObject(proxy);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Object getCglibProxyTargetObject(Object proxy) throws Exception {
|
private static Object getCglibProxyTargetObject(Object proxy) throws Exception {
|
||||||
Object dynamicAdvisedInterceptor = BeanUtil.getFieldValue(proxy, "CGLIB$CALLBACK_0");
|
Object dynamicAdvisedInterceptor = BeanUtil.getFieldValue(proxy, "CGLIB$CALLBACK_0");
|
||||||
AdvisedSupport advisedSupport = (AdvisedSupport) BeanUtil.getFieldValue(dynamicAdvisedInterceptor, "advised");
|
AdvisedSupport advisedSupport = (AdvisedSupport) BeanUtil.getFieldValue(dynamicAdvisedInterceptor, "advised");
|
||||||
return advisedSupport.getTargetSource().getTarget();
|
return advisedSupport.getTargetSource().getTarget();
|
||||||
}
|
}
|
||||||
|
|
||||||
private static Object getJdkDynamicProxyTargetObject(Object proxy) throws Exception {
|
private static Object getJdkDynamicProxyTargetObject(Object proxy) throws Exception {
|
||||||
AopProxy aopProxy = (AopProxy) BeanUtil.getFieldValue(proxy, "h");
|
AopProxy aopProxy = (AopProxy) BeanUtil.getFieldValue(proxy, "h");
|
||||||
AdvisedSupport advisedSupport = (AdvisedSupport) BeanUtil.getFieldValue(aopProxy, "advised");
|
AdvisedSupport advisedSupport = (AdvisedSupport) BeanUtil.getFieldValue(aopProxy, "advised");
|
||||||
return advisedSupport.getTargetSource().getTarget();
|
return advisedSupport.getTargetSource().getTarget();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue