[{"createTime":1735734952000,"id":1,"img":"hwy_ms_500_252.jpeg","link":"https://activity.huaweicloud.com/cps.html?fromacct=261f35b6-af54-4511-a2ca-910fa15905d1&utm_source=V1g3MDY4NTY=&utm_medium=cps&utm_campaign=201905","name":"华为云秒杀","status":9,"txt":"华为云38元秒杀","type":1,"updateTime":1735747411000,"userId":3},{"createTime":1736173885000,"id":2,"img":"txy_480_300.png","link":"https://cloud.tencent.com/act/cps/redirect?redirect=1077&cps_key=edb15096bfff75effaaa8c8bb66138bd&from=console","name":"腾讯云秒杀","status":9,"txt":"腾讯云限量秒杀","type":1,"updateTime":1736173885000,"userId":3},{"createTime":1736177492000,"id":3,"img":"aly_251_140.png","link":"https://www.aliyun.com/minisite/goods?userCode=pwp8kmv3","memo":"","name":"阿里云","status":9,"txt":"阿里云2折起","type":1,"updateTime":1736177492000,"userId":3},{"createTime":1735660800000,"id":4,"img":"vultr_560_300.png","link":"https://www.vultr.com/?ref=9603742-8H","name":"Vultr","status":9,"txt":"Vultr送$100","type":1,"updateTime":1735660800000,"userId":3},{"createTime":1735660800000,"id":5,"img":"jdy_663_320.jpg","link":"https://3.cn/2ay1-e5t","name":"京东云","status":9,"txt":"京东云特惠专区","type":1,"updateTime":1735660800000,"userId":3},{"createTime":1735660800000,"id":6,"img":"new_ads.png","link":"https://www.iodraw.com/ads","name":"发布广告","status":9,"txt":"发布广告","type":1,"updateTime":1735660800000,"userId":3},{"createTime":1735660800000,"id":7,"img":"yun_910_50.png","link":"https://activity.huaweicloud.com/discount_area_v5/index.html?fromacct=261f35b6-af54-4511-a2ca-910fa15905d1&utm_source=aXhpYW95YW5nOA===&utm_medium=cps&utm_campaign=201905","name":"底部","status":9,"txt":"高性能云服务器2折起","type":2,"updateTime":1735660800000,"userId":3}]
深拷贝和浅拷贝的区别
* 浅拷贝:只是调用子对象的set方法,并没有将所有属性拷贝。(也就是说,引用的一个内存地址)
* 深拷贝:将子对象的属性也拷贝过去。
BeanUtils.copyProperties是根据什么来匹配拷贝的?
1、根据属性的类型和定义的属性名字
以下两种情况都不会进行拷贝
*
*
只有属性的类型和定义的属性名字均对应是才会进行拷贝
BeanUtils.copyProperties是深拷贝还是浅拷贝?具体得看拷贝的对象里面成员变量是否包含对其它对象的引用
拷贝的对象里面的成员变量引用了其它对象时和基本数据类型的区别
CustomPopup类
@Data public class CustomPopup { private String buttonImageUrl;
List<CustomPopupPo> langImageUrlInput; }
MyCustomPopup类
@Data public class MyCustomPopup { private String buttonImageUrl;
List<CustomPopupPo> langImageUrlInput; }
test类
@Test public void demo6(){ CustomPopup customPopup = new CustomPopup();
MyCustomPopup myCustomPopup = new MyCustomPopup();
customPopup.setButtonImageUrl("123"); List<CustomPopupPo> customPopupPoList =
new ArrayList<>(); CustomPopupPo customPopupPo = new CustomPopupPo();
customPopupPoList.add(customPopupPo);
customPopup.setLangImageUrlInput(customPopupPoList);
BeanUtils.copyProperties(customPopup,myCustomPopup);
customPopup.setButtonImageUrl("321");
System.out.println(customPopup.getLangImageUrlInput().hashCode());
System.out.println(myCustomPopup.getLangImageUrlInput().hashCode());
System.out.println(customPopup.getButtonImageUrl());
System.out.println(myCustomPopup.getButtonImageUrl());
System.out.println(customPopup.getButtonImageUrl().hashCode());
System.out.println(myCustomPopup.getButtonImageUrl().hashCode()); }
结果
可以看到拷贝前后两个对象的引用对象的成员变量langImageUrlInput的哈希值是一样的,说明引用的是同一个对象,是浅拷贝。
而基本数据类型的成员变量buttonImageUrl拷贝前后的哈希值不一致,说明是深拷贝。