码迷,mamicode.com
首页 > 编程语言 > 详细

java动态代理实例

时间:2016-10-14 00:29:39      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

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

public class ProxyTest {

    public static void main(String[] args) {
        Target target = (Target)Proxy.newProxyInstance(TargetImpl.class.getClassLoader(), TargetImpl.class.getInterfaces(), new MyInterceptor());
        target.say();
        /*
         Console:
            拦截之前
            this is Target.class
            拦截之后
         */
    }
}

//目标类接口
interface Target {

    void say();
}

//目标类
class TargetImpl implements Target {

    @Override
    public void say() {
        System.out.println("this is Target.class");
    }

}

//拦截器
class MyInterceptor implements InvocationHandler {

    private Object target = new TargetImpl();
    
    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        System.out.println("拦截之前");
        method.invoke(target, args);//调用目标类方法
        System.out.println("拦截之后");
        return null;
    }
}

 

java动态代理实例

标签:

原文地址:http://www.cnblogs.com/15ho/p/5958618.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!