https://blog.csdn.net/wjw_de_java/article/details/113742093
https://blog.csdn.net/qq_40813329/article/details/124633905
BeanUtils.copyProperties会进行类型转换;
BeanUtils.copyProperties方法简单来说就是将两个字段相同的对象进行属性值的复制。如果 两个对象之间存在名称不相同的属性,则 BeanUtils 不对这些属性进行处理,需要程序手动处理。
这两个类在不同的包下面,而这两个类的copyProperties()方法里面传递的参数赋值是相反的。
一、 org.springframework.beans.BeanUtils
a拷贝到b
1.a,b为对象
2.BeanUtils.copyProperties(a, b);
二、org.apache.commons.beanutils.BeanUtils
b拷贝到a
1.a,b为对象
2.BeanUtils.copyProperties(a, b);