lodsve.core.utils.ProxyUtils Maven / Gradle / Ivy
/*
* Copyright (C) 2018 Sun.Hao
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
package lodsve.core.utils;
import org.springframework.aop.framework.AdvisedSupport;
import org.springframework.aop.support.AopUtils;
import org.springframework.util.ClassUtils;
import java.lang.reflect.Field;
import java.lang.reflect.Proxy;
/**
* 将代理类变成真实的类.
*
* @author sunhao([email protected])
* @date 15/9/2 下午5:21
*/
public class ProxyUtils {
/**
* 获取 目标对象
*
* @param proxy 代理对象
* @return
* @throws Exception
*/
@SuppressWarnings("unchecked")
public static T getTarget(T proxy) {
if (Proxy.isProxyClass(proxy.getClass())) {
return getJdkDynamicProxyTargetObject(proxy);
} else if (ClassUtils.isCglibProxy(proxy)) {
return getCglibProxyTargetObject(proxy);
}
return (T) AopUtils.getTargetClass(proxy);
}
@SuppressWarnings("unchecked")
private static T getCglibProxyTargetObject(T proxy) {
try {
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);
return (T) ((AdvisedSupport) advised.get(dynamicAdvisedInterceptor)).getTargetSource().getTarget();
} catch (Exception e) {
throw new RuntimeException(e);
}
}
@SuppressWarnings("unchecked")
private static T getJdkDynamicProxyTargetObject(T proxy) {
try {
Field h = proxy.getClass().getSuperclass().getDeclaredField("h");
h.setAccessible(true);
Object proxyObject = h.get(proxy);
Field f = proxyObject.getClass().getDeclaredField("target");
f.setAccessible(true);
return (T) f.get(proxyObject);
} catch (Exception e) {
throw new RuntimeException(e);
}
}
}