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

【Spring】动态代理模板

时间:2021-02-05 10:47:05      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:return   des   throwable   instance   rgb   动态代理   public   自动生成   cat   

动态代理模板

/**
 * Description :
 * 公用这个类,自动生成代理类
 *
 * @author : AirCL
 * Date : 2021/2/4
 * Time : 20:27
 */
public class ProxyInvocationHandler implements InvocationHandler {

    //被代理的按口
    private Object target;

    public void setTarget(Object target) {
        this.target = target;
    }

    //生成得到代理类
    public Object getProxy() {
        return Proxy.newProxyInstance(this.getClass().getClassLoader(),
                target.getClass().getInterfaces(), this);
    }

    //处理代理实例,并返间结果:
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        Object result = method.invoke(target, args);
        return result;
    }
}

 

【Spring】动态代理模板

标签:return   des   throwable   instance   rgb   动态代理   public   自动生成   cat   

原文地址:https://www.cnblogs.com/AirCL/p/14374850.html

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