jdk动态代理

package main;

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

public class App {
    public static void main(String[] args) {
    System.getProperties().put("jdk.proxy.ProxyGenerator.saveGeneratedFiles", "true");
        MapperProxy proxy = new MapperProxy();

        UserMapper mapper = proxy.newInstance(UserMapper.class);

        User user = mapper.getUserById(123, "peter");

        User user1 = mapper.getUserById1(222, "peter");

        System.out.println(user);
        System.out.println(user1);
    }
}


class User {
    Integer id;
    String name;
    Integer age;

    public User(Integer id, String name, Integer age) {
        this.id = id;
        this.name = name;
        this.age = age;
    }

    @Override
    public String toString() {
        return "User{" +
                "id=" + id +
                ", name='" + name + '\'' +
                ", age=" + age +
                '}';
    }
}

interface UserMapper {
    User getUserById(int id, String name);

    User getUserById1(int id, String name);
}

class MapperProxy implements InvocationHandler {


    //    proxy:就是代理对象,newProxyInstance方法的返回对象
//
//    method:调用的方法
//
//    args: 方法中的参数

    @Override
    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
        if (Object.class.equals(method.getDeclaredAnnotations())) {
            try {
                return method.invoke(this, args);
            } catch (Throwable t) {

            }
        }

        Class[] parameterTypes = {String.class, String.class, Integer.class};

        Class clazz = method.getReturnType();
        Constructor constroctor = clazz.getConstructor(Integer.class, String.class, Integer.class);
//        return new User((Integer) args[0], "aaa", 18);

        return constroctor.newInstance((Integer) args[0], "aaa", 18);
    }


//    newProxyInstance,方法有三个参数:
//
//    loader: 用哪个类加载器去加载代理对象
//
//    interfaces:动态代理类需要实现的接口
//
//    h:动态代理方法在执行时,会调用h里面的invoke方法去执行


    public <T> T newInstance(Class<T> clz) {
        //userMapper接口的invoke//
        return (T) Proxy.newProxyInstance(clz.getClassLoader(), new Class[]{clz}, this);
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值