转自:
下文讲述反射创建代理类的实现方式,如下所示:
java反射机制中,借助运行时创建接口的实现类,达到动态调用类,我们将这种动态接口模式实现的代理,称之为JDK动态代理。
动态代理应用场景:
数据库事务统一处理
方法增强
AOP
我们可借助Proxy.newProxyInstance()方法创建动态代理
newProxyInstance()方法有三个参数:
例
InvocationHandler handler = new MyInvocationHandler(); MyInterface proxy = (MyInterface) Proxy.newProxyInstance( MyInterface.class.getClassLoader(), new Class[] { MyInterface.class }, handler);
上面的代码,定义了一个proxy变量,它包含一个MyInterface接口的动态实现,当我们调用proxy中的方法,都会转入到InvocationHandler接口的handler运行 例:
public interface InvocationHandler{ Object invoke(Object proxy, Method method, Object[] args) throws Throwable; } public class MyInvocationHandler implements InvocationHandler{ public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { //do something "dynamic" } }