这里说的是spring的BeanUtils.copyProperties。
场景
BeanUtils是深拷贝,还是浅拷贝?
什么情况适合用BeanUtils
如果都是单一的属性,那么不涉及到深拷贝的问题,适合用BeanUtils。
有子对象就一定不能用BeanUtils么
代码例子
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)); } }
// 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
区别如下:
| – | spring的BeanUtils | commons的BeanUtils |
|---|---|---|
| 方法 | copyProperty和copyProperties | copyProperties |
| 参数 | src ,dest | dest,src |
这2个用哪个都行,但是要注意区别。 因为他们2个的src和dest是正好相反的,要特别留意。
发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/207988.html原文链接:https://javaforall.net
