Java 动态代理

A dynamic proxy class is a class that implements a list of interfaces specified at runtime such that a method invocation through one of the interfaces on an instance of the class will be encoded and dispatched to another object through a uniform interface.

可见Java的动态代理是基于Interface的。Spring AOP 功能就是利用的Java动态代理。

动态代理的用处:
- 记入log, 在方法调用的前后记入log
- 参数检查
- 可以改变方法的原始行为

实现动态代理的要点:
- 创建业务需要的Interface
- 创建实现InvocationHandler的代理类,主要是实现invoke方法
- 通过Proxy.newProxyInstance()生成一个实现Interface的代理类

一个例子:

package ttttt;

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

import javax.management.RuntimeErrorException;

interface SomeInterface {
    public void doSomething();
}

class SomeImpl implements SomeInterface {

    @Override
    public void doSomething() {
        System.out.println("I am working!");

    }

}

class SomeProxy implements InvocationHandler {
    private SomeInterface SomeImpl;

    public SomeProxy(SomeInterface someImpl) {
        super();
        SomeImpl = someImpl;
    }

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        System.out.println("proxy class is " + proxy.getClass().getCanonicalName());
        System.out.println("Do something before.");
        Object object = method.invoke(SomeImpl, args);
        System.out.println("do something after.");
        return object;
    }

}

public class ProxyTest {
    public static void main(String[] args) {
        SomeInterface proxy = (SomeInterface) Proxy.newProxyInstance(SomeInterface.class.getClassLoader(),
                new Class[] { SomeInterface.class }, new SomeProxy(new SomeImpl()));
        proxy.doSomething();

    }

}

执行结果:

proxy class is ttttt.$Proxy0
Do something before.
I am working!
do something after.

参考:
Dynamic Proxy Classes
Java的动态代理(dynamic proxy)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值