BeanUtils.copyProperties()复制对象时改变属性类型

使用BeanUtils

@Data
@Builder
public class People {
    private String name;
    private Integer age;
    private Date date;

    public People(String name, Integer age, Date date) {
        this.name = name;
        this.age = age;
        this.date = date;
    }
}
@Data
@ToString
public class User {
    private String name;
    private Integer age;
    private Date date;
}

  People people = new People("zhangsan", 12, date);
  User user = new User();
  BeanUtils.copyProperties(people,user);

重写GET改变User中date返回类型

@Data
@ToString
public class User {
    private String name;
    private Integer age;
    private Date date;

    public String getDate() {
        if (date != null) {
            SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
            return simpleDateFormat.format(date);
        }
        return "";
    }
}

底层实现

 public static void main(String[] args) throws Exception {
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
        Date date = simpleDateFormat.parse("2021-12-07");
        // 封装date类型的People
        People people = new People("zhangsan", 12, date);

        User user = new User();
        // 拿到date类型的类
        Class<?> clzPeople = people.getClass();
        // 拿到要赋值的类
        Class<?> clzUser = user.getClass();
        // 获取实体类的所有属性,返回Field数组
        Field[] fields = clzPeople.getDeclaredFields();
        for (Field field : fields) {
            //  打印所有属性类型
            System.out.println(field.getGenericType());
            //  获取属性名称
            String name = field.getName();
            //  属性名首字母大写用于拼接get\set 方法
            String methodName =  Character.toUpperCase(name.charAt(0)) + name.substring(1);
            //  打印方法名称
            System.out.println(methodName);
            //  获取get方法
            Method method = clzPeople.getMethod("get" + methodName);
            //  执行方法并获取方法返回值
            Object arg = method.invoke(people);
            //  输出方法返回字段
            System.out.println(arg);

            // 获取属性类型
//            Class<?> type = clzUser.getDeclaredField("name").getType();
            // 获取方法返回值类型
            Type t = method.getAnnotatedReturnType().getType();
            // 获取要赋值的set方法
            Method method1 = clzUser.getMethod("set" + methodName, (Class<?>) t);
            // 执行方法
            method1.invoke(user, arg);
        }
        System.out.println(user);
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值