黑马程序员技术交流社区
标题:
jdk代理测试类
[打印本页]
作者:
WAHAHAN
时间:
2019-10-10 13:38
标题:
jdk代理测试类
//创建目标对象
final Target target = new Target();
//增强对象
final Advice advice = new Advice();
TargetInterface proxy = (TargetInterface) Proxy.newProxyInstance(
target.getClass().getClassLoader(),//目标对象类加载器
target.getClass().getInterfaces(),//目标相同的接口字节码对象数组
new InvocationHandler() {
//调用代理对象的任何方法,实质执行的都是invoke方法
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
//前置增强
advice.before();
Object invoke = method.invoke(target, args);
//后置增强
advice.after();
return invoke;
}
}
);
//调用代理对象的方法
proxy.save();
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2