理解 JDK 动态代理

JDK动态代理主要涉及两个类:java.lang.reflect.Proxyjava.lang.reflect.InvocationHandler

代码示例

首先有一个接口,接口内有一个方法

public interface Azh3ngService { 
    void foo();
}

Azh3ngServiceImpl 实现接口并完成方法逻辑

public class Azh3ngServiceImpl implements Azh3ngService {
    @Override
    public void foo() {
        System.out.println("do something...");
    }
}

Azh3ngHandler 作为代理类的请求处理器,实现 InvocationHandler 接口

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.util.Date;

public class Azh3ngHandler implements InvocationHandler {
    Object target;  // 被代理的对象,实际的方法执行者

    public LogHandler(Object target) {
        this.target = target;
    }
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        before();
        Object result = method.invoke(target, args);  // 调用 target 的 method 方法
        after();
        return result;  // 返回方法的执行结果
    }
    // invoke方法之前执行
    private void before() {
        System.out.println("before...");
    }
    // invoke方法之后执行
    private void after() {
        System.out.println("after...");
    }
}

使用main方法进行测试

import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;

public class TestJDKProxy {
    public static void main(String[] args) throws IllegalAccessException, InstantiationException {
        // 设置变量可以保存动态代理类,默认名称以 $Proxy0 格式命名
        // System.getProperties().setProperty("sun.misc.ProxyGenerator.saveGeneratedFiles", "true");
        // 1. 创建被代理的对象
        Azh3ngServiceImpl azh3ngServiceImpl = new Azh3ngServiceImpl();
        // 2. 获取对应的 ClassLoader
        ClassLoader classLoader = azh3ngServiceImpl.getClass().getClassLoader();
        // 3. 获取所有接口的Class,这里的UserServiceImpl只实现了一个接口UserService,
        Class[] interfaces = azh3ngServiceImpl.getClass().getInterfaces();
        // 4. 创建一个将传给代理类的调用请求处理器,处理所有的代理对象上的方法调用
        //     这里创建的是一个自定义的日志处理器,须传入实际的执行对象 userServiceImpl
        InvocationHandler azh3ngHandler = new Azh3ngHandler(azh3ngServiceImpl);
        /*
		   5.根据上面提供的信息,创建代理对象 在这个过程中,
               a.JDK会通过根据传入的参数信息动态地在内存中创建和.class 文件等同的字节码
               b.然后根据相应的字节码转换成对应的class,
               c.然后调用newInstance()创建代理实例
		 */
        Azh3ngService azh3ngService = (Azh3ngService) Proxy.newProxyInstance(classLoader, interfaces, azh3ngHandler);
        // 调用代理的方法
        azh3ngService.foo();
        
        // 保存JDK动态代理生成的代理类,类名保存为 Azh3ngService
        // ProxyUtils.generateClassFile(azh3ngServiceImpl.getClass(), "Azh3ngService");
    
        /*
         * output:
         * before...
         * do something...
         * after...
         */
    }
}

如果传入 Proxy.newProxyInstance() 的第二个参数改成 new Class[]{Azh3ngServiceImpl.class},将会报错:Exception in thread "main" java.lang.IllegalArgumentException: com.azh3ng.service.Azh3ngServiceImpl is not an interface

参考