Java教程

javase 动态代理

本文主要是介绍javase 动态代理,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

动态代理是通过代理类proxy的代理、接口和实现类之间可以不直接发生联系而可以在运行期实现动态关联,主要使用Java.lang.reflect中的两个类:

1、InvocHandle类

2、proxy类

 

public class Test3 {
    @Test
    public void testProxy(){
        CreateProxy cp =new CreateProxy();
        Subject person = new Person();
        Subject proxy = (Subject) cp.create(person);
        proxy.Shopping();
    }
}




package com.Lxx.Porxy;

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

public class CreateProxy implements InvocationHandler {
    //invoke是用于动态生成代理对象
    private Object target;//被代理的对象
    public Object create(Object target){
        this.target=target;
        Object proxy = Proxy.newProxyInstance(target.getClass().getClassLoader(), target.getClass().getInterfaces(),this);//类加载器
        return proxy;
    }
    @Override
    //代理对象要执行的方法
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        System.out.println("正在找商品。。。");
        System.out.println("与客户确认商品");
        method.invoke(target,args);
        System.out.println("Done");
        return null;
    }
}

这篇关于javase 动态代理的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!