动态代理工具类!
package test3;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Method;
import java.lang.reflect.Proxy;
public class ProxInvocationHandler implements InvocationHandler{
//被代理的接口
private Object target;
//使用set方法生成代理接口
public void setTarget(Object target) {
this.target = target;
}
public Object getProxy() {
/*
* 反射
* 参数一:类加载器
* 参数二:被代理接口的实例 ( target )
* 参数三:this
* */
return Proxy.newProxyInstance(this.getClass().getClassLoader()
, target.getClass().getInterfaces()
, this);
}
//处理代理实例,并返回结果
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
// 之前
Object res = method.invoke(target, args);
//之后
return res;
}
}
怎么使用工具类?
来个目标类
测试
package test3;
import test.test2.DaoImpl;
import test.test2.Mdao;
public class MyTest {
public static void main(String[] args) {
//真实角色
DaoImpl dao = new DaoImpl();
//代理角色,不存在
ProxInvocationHandler pih = new ProxInvocationHandler();
pih.setTarget(dao);//设置要代理的对象
//动态生成代理类
Mdao mdao = (Mdao) pih.getProxy();
mdao.add();
}
}
动态代理的具体原理就不讲了