使用
- 说起动态代理,大家都不陌生,但对其原理却一知半解。经常遇到一个问题,java动态代理为何只能适用接口,why?你有考虑过其底层逻辑原因吗?
- 首先看一个简单的使用
public class MyInvocationHandler implements InvocationHandler {
private Object target ;
public MyInvocationHandler(Object target) {
super();
this.target = target;
}
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
// 在目标对象的方法执行之前简单的打印一下
System.out.println("------------------before------------------");
// 执行目标对象的方法
Object result = method.invoke(target, args);
// 在目标对象的方法执行之后简单的打印一下
System.out.println("-------------------after------------------");
return result;
}
/**
* 获取目标对象的代理对象
* @return 代理对象
*/
public Object getProxy() {
return Proxy.newProxyInstance(Thread.currentThread().getContextClassLoader(),
target.getClass().getInterfaces(), this);
}
}
- 以上,主要看Proxy.newProxyInstance代理方法
-
java对象创建过程,一般都是创建.java类通过javac编译成.class文件,通过类加载器创建对象初始化;
-
public static Object newProxyInstance(ClassLoader loader,
Class>[] interfaces,
InvocationHandler h){
//获得class对象 cl为 $Proxy0
Class> cl = getProxyClass0(loader, intfs);
//获取构造函数
final Constructor> cons = cl.getConstructor(constructorParams);
final InvocationHandler ih = h;
if (!Modifier.isPublic(cl.getModifiers())) {
AccessController.doPrivileged(new PrivilegedAction() {
public Void run() {
cons.setAccessible(true);
return null;
}
});
}
//根据构造函数反射调用初始化对象,注意里面的h为实现MyInvocationHandler传入的this
return cons.newInstance(new Object[]{h});
}
- 那么动态代理是如何创建代理对象呢?我们分析以上代码可知:
- newProxyInstance中getProxyClass0()获取代理的.class文件,这里没有了.java源码,而是直接生成class文件,通过class创建对象;
- 有class文件后调用newInstance创建对象,注意构造函数中传入参数h为实现InvocationHandler
- 进入getProxyClass0方法,记得参数loader : 类加载器, interfaces当前需要代理的接口数据
private static Class> getProxyClass0(ClassLoader loader,
Class>... interfaces) {
return proxyClassCache.get(loader, interfaces);
}
public V get(K key, P parameter) {
//从缓存中获取,首次肯定没有的
......
// 创建类对象subKeyFactory在WeakCache初始化传入
Object subKey = Objects.requireNonNull(subKeyFactory.apply(key, parameter));
Supplier supplier = valuesMap.get(subKey);
}
//Proxy中初始化缓存WeakCache
private static final WeakCache[], Class>>
proxyClassCache = new WeakCache<>(new KeyFactory(), new ProxyClassFactory());
- 肯定有个缓存快速查找啦,没有就通过subKeyFactory.apply工厂类去新建啦!
- 以上subKeyFactory.apply对应的为ProxyClassFactory类中的apply方法: 生成代理类$Proxy0的class文件并返回
public Class> apply(ClassLoader loader, Class>[] interfaces) {
Map, Boolean> interfaceSet = new IdentityHashMap<>(interfaces.length);
for (Class> intf : interfaces) {
/*
* Verify that the class loader resolves the name of this
* interface to the same Class object.
*/
Class> interfaceClass = null;
try {
interfaceClass = Class.forName(intf.getName(), false, loader);
} catch (ClassNotFoundException e) {
}
if (interfaceClass != intf) {
throw new IllegalArgumentException(
intf + " is not visible from class loader");
}
/*
* 如果当前不是接口,抛出异常,但是并未说明我们的疑问
*/
if (!interfaceClass.isInterface()) {
throw new IllegalArgumentException(
interfaceClass.getName() + " is not an interface");
}
/*
* Verify that this interface is not a duplicate.
*/
if (interfaceSet.put(interfaceClass, Boolean.TRUE) != null) {
throw new IllegalArgumentException(
"repeated interface: " + interfaceClass.getName());
}
}
String proxyPkg = null; // package to define proxy class in
int accessFlags = Modifier.PUBLIC | Modifier.FINAL;
/*
* Record the package of a non-public proxy interface so that the
* proxy class will be defined in the same package. Verify that
* all non-public proxy interfaces are in the same package.
*/
for (Class> intf : interfaces) {
int flags = intf.getModifiers();
if (!Modifier.isPublic(flags)) {
accessFlags = Modifier.FINAL;
String name = intf.getName();
int n = name.lastIndexOf('.');
String pkg = ((n == -1) ? "" : name.substring(0, n + 1));
if (proxyPkg == null) {
proxyPkg = pkg;
} else if (!pkg.equals(proxyPkg)) {
throw new IllegalArgumentException(
"non-public interfaces from different packages");
}
}
}
if (proxyPkg == null) {
// if no non-public proxy interfaces, use com.sun.proxy package
proxyPkg = ReflectUtil.PROXY_PACKAGE + ".";
}
/*
* 创建类名 $proxy + num自增加作为proxyName类名 .class
*/
long num = nextUniqueNumber.getAndIncrement();
String proxyName = proxyPkg + proxyClassNamePrefix + num;
/*
* 生成类名class的byte数组
*/
byte[] proxyClassFile = ProxyGenerator.generateProxyClass(
proxyName, interfaces, accessFlags);
try {
//native生成字节码文件
return defineClass0(loader, proxyName,
proxyClassFile, 0, proxyClassFile.length);
} catch (ClassFormatError e) {
/*
* A ClassFormatError here means that (barring bugs in the
* proxy class generation code) there was some other
* invalid aspect of the arguments supplied to the proxy
* class creation (such as virtual machine limitations
* exceeded).
*/
throw new IllegalArgumentException(e.toString());
}
}
}
- 生成class文件格式步骤为:
- 首先验证是否时接口,这里只是验证代理必须是接口,至于为何这里没有显示哦;
- 创建.class文件的类名为$Proxy自增的num,首次为0,这个我们待会可以看到的
- 通过ProxyGenerator.generateProxyClass生成byte数组后通过调用native方法defineClass0生成class文件
- 返回的为$Proxy0类
- 还记得2中cons.newInstance(new Object[]{h}),有上面class生成可知cons即为$Proxy0调用 newInstance构造函数传参为 h即 Proxy.newProxyInstance()中第三个参数h实现InvocationHandler的对象
- super(var1)将h传给$Proxy0父类Proxy的h,因此可知$Proxy0中所调用的super.h即为我们自己写的实现InvocationHandler的对象(很多地方用的是匿名内部类)
public final class $Proxy0 extends Proxy implements UserService {
//构造函数中传入的var1即为上方的h,super即为Proxy
public $Proxy0(InvocationHandler var1) throws {
super(var1);
}
//父类中的Proxy构造函数h = MyInvocationHandler
protected Proxy(InvocationHandler h) {
Objects.requireNonNull(h);
this.h = h;
}
}
- 以上分析为何动态代理只适用于接口,看我们生成的$Proxy0 必须要extends Proxy,而由于java的单继承原则,因此不能在继承类了,只能实现接口,因此只适用与接口;
- newProxyInstance返回的为代理生成class类的代理对象 $Proxy0后,调用add方法
- $Proxy0.add() -> h为MyInvocationHandler.invoke()方法,将m3即接口方法m3 = Class.forName("test.UserService").getMethod("add"),在invoke方法中通过方式method.invoke() == m3.invoke(target , args) , result为方法返回值
public final void add() throws {
try {
//h为MyInvocationHandler 调用其invoke方法
super.h.invoke(this, m3, (Object[])null);
} catch (RuntimeException | Error var2) {
throw var2;
} catch (Throwable var3) {
throw new UndeclaredThrowableException(var3);
}
}
- 通过以上调用了代理类中的invoke
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
// 在目标对象的方法执行之前简单的打印一下
System.out.println("------------------before------------------");
// 执行目标对象的方法,result为方法的返回值
Object result = method.invoke(target, args);
// 在目标对象的方法执行之后简单的打印一下
System.out.println("-------------------after------------------");
return result;
}
- 注意:这里的invoke是被$Proxy0代理类调用的,参数method为$Proxy0代理类中静态变量,在invoke中调用method.invoke即反射调用实现接口类的方法,以上即为代理的完善源码分析!
- 后续:遇到一个有趣的问题,好奇打印了一下被代理对象和代理类Proxy0重写了toString()方法并反射调用了被代理类的toString(),因此两者打印的完全一致!遇到不理解的,还是得多多看源码呀!