BeanUtils.copyProperties的使用(深拷贝,浅拷贝)
Posted Java知音_
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BeanUtils.copyProperties的使用(深拷贝,浅拷贝)相关的知识,希望对你有一定的参考价值。
点击关注公众号,实用技术文章及时了解
来源:blog.csdn.net/enthan809882/
article/details/104956537
这里说的是spring的BeanUtils.copyProperties。
场景
开发中经常遇到,把父类的属性拷贝到子类中。通常有2种方法:
一个一个set
用BeanUtils.copyProperties
很显然BeanUtils更加方便,也美观很多。
那么任何情况都能使用BeanUtils么,当然不是。要先了解他。
BeanUtils是深拷贝,还是浅拷贝?
是浅拷贝。
浅拷贝:只是调用子对象的set方法,并没有将所有属性拷贝。(也就是说,引用的一个内存地址)
深拷贝:将子对象的属性也拷贝过去。
什么情况适合用BeanUtils
如果都是单一的属性,那么不涉及到深拷贝的问题,适合用BeanUtils。
有子对象就一定不能用BeanUtils么
并不绝对,这个要区分考虑:
子对象还要改动。
子对象不怎么改动。
虽然有子对象,但是子对象并不怎么改动,那么用BeanUtils也是没问题的。
代码例子
下面用代码说明下。
翠山有个儿子无忌,儿子继承了他的face和height。
但是life应该是自己的。
后来翠山自刎而死,无忌也变成dead状态了。这就是浅拷贝,无忌用的life引用的翠山的life对象。
Father类:
@Data
public class Father {
private String face; // 长相
private String height; // 身高
private Life life; // 生命
}
Life 类:
@Data
public class Life {
private String status;
}
Son类和main方法:
@Data
public class Son extends Father{
private Life life;
public static void main(String[] args) {
Father cuishan = new Father();
cuishan.setFace("handsome");
cuishan.setHeight("180");
Life cuishanLife = new Life();
cuishanLife.setStatus("alive");
cuishan.setLife(cuishanLife);
Son wuji=new Son();
BeanUtils.copyProperties(cuishan,wuji);
// Life wujiLife = wuji.getLife();
// wujiLife.setStatus("alive");
// wuji.setLife(wujiLife);
// cuishanLife.setStatus("dead"); // 翠山后来自刎了
System.out.println(JSON.toJSONString(cuishan));
System.out.println(JSON.toJSONString(wuji));
}
}
上面注释出的代码可以如下替换:
case1和case2还是受浅拷贝的影响,case3不受。另外,关注Java知音公众号,回复“后端面试”,送你一份面试题宝典!
case1:翠山自刎,无忌也挂了
// Life wujiLife = wuji.getLife();
// wujiLife.setStatus("alive");
// wuji.setLife(wujiLife);
// cuishanLife.setStatus("dead"); // 翠山后来自刎了
case2:翠山自刎,无忌设置或者,翠山也活了
// cuishanLife.setStatus("dead"); // 翠山后来自刎了
// Life wujiLife = wuji.getLife();
// wujiLife.setStatus("alive");
// wuji.setLife(wujiLife);
case3:翠山和无忌互不影响
cuishanLife.setStatus("dead"); // 翠山自刎了 该行放在上下均可
// 无忌用个新对象 不受翠山影响了
Life wujiLife = new Life();
wujiLife.setStatus("alive");
wuji.setLife(wujiLife);
dest ,src 还是 src,dest
笔者在这个爬过坑。
因为记得有beanutils这个工具,直接import了。
发现有copyProperty和copyProperties。看了下发现是 dest,src ,于是果断使用,结果发现参数没了。
其实常见的BeanUtils有2个:s- pring有BeanUtils
apache的commons也有BeanUtils。
区别如下:
这2个用哪个都行,但是要注意区别。因为他们2个的src和dest是正好相反的,要特别留意。
●【练手项目】基于SpringBoot的ERP系统,自带进销存+财务+生产功能
●分享一套基于SpringBoot和Vue的企业级中后台开源项目,代码很规范!
●能挣钱的,开源 SpringBoot 商城系统,功能超全,超漂亮!
PS:因为公众号平台更改了推送规则,如果不想错过内容,记得读完点一下“在看”,加个“星标”,这样每次新文章推送才会第一时间出现在你的订阅列表里。点“在看”支持我们吧!
以上是关于BeanUtils.copyProperties的使用(深拷贝,浅拷贝)的主要内容,如果未能解决你的问题,请参考以下文章
关于BeanUtils.copyProperties()用法和区别
BeanUtils.copyProperties VS PropertyUtils.copyProperties