当前位置:   article > 正文

Spring BeanUtils.copyProperties只拷贝不为null的属性_springboot 在 copy 属性的时候有些字段可以拷贝有些为null

springboot 在 copy 属性的时候有些字段可以拷贝有些为null

一:问题  BeanUtils.copyProperties拷贝属性不排除null

apache和spring的工具包中都有BeanUtils,使用其中的copyProperties方法可以非常方便的进行这些工作,但在实际应用中发现,对于null的处理不太符合个人的需要,例如在进行修改操作中只需要对model中某一项进行修改,那么一般我们在页面上只提交model的ID及需要修改项的值,这个时候使用BeanUtils.copyProperties会将其他的null绑定到pojo中去。

BeanUtils.copyProperties的使用要导入:

org.springframework.beans.BeanUtils;
  1. import com.hourumiyue.system.SpringUtil;
  2. import org.springframework.beans.BeanUtils;
  3. public class TestBeanUtiles {
  4. public static void main(String[] args) {
  5. NewPerson newPerson = new NewPerson();
  6. newPerson.setName("miyue");//前台用户更新过的数据,例如前台只修改了用户名
  7. //下面我们假设是从数据库加载出来的老数据
  8. OldPerson oldPerson = new OldPerson();
  9. oldPerson.setSex("nv");
  10. oldPerson.setAge(5);
  11. //如果我们想把新数据更新到老数据这个对象里面,我们就可以借助BeanUtils.copyProperties()的方法如下:
  12. BeanUtils.copyProperties(newPerson, oldPerson);
  13.      System.out.println(newPerson.toString());
  14. System.out.println(oldPerson.toString());
  15. }
  16. }
  1. 运行结果:
  2. NewPerson{name='miyue', sex='null', age=0}
  3. OldPerson{name='miyue', sex='null', age=0}

从上面我们可以看出,新的对象确实把修改的数据更新给老对象了,但是它却把原来为null或者int类型默认为0的值也都赋给了老对象,这肯定不合理的。

二:解决问题 处理 BeanUtils.copyProperties排除null属性的copy

我们自己写了一个加工类,大家可以直接调用我们加工类的copyPropertiesIgnoreNull()方法即可忽略null值,避免老数据被null覆盖的尴尬:

  1. import com.hourumiyue.system.SpringUtil;
  2. import org.springframework.beans.BeanUtils;
  3. import org.springframework.beans.BeanWrapper;
  4. import org.springframework.beans.BeanWrapperImpl;
  5. import org.springframework.beans.BeansException;
  6. import org.springframework.context.ApplicationContext;
  7. import org.springframework.context.ApplicationContextAware;
  8. import java.util.HashSet;
  9. import java.util.Set;
  10. public class TestBeanUtiles {
  11. public static String[] getNullPropertyNames (Object source) {
  12. final BeanWrapper src = new BeanWrapperImpl(source);
  13. java.beans.PropertyDescriptor[] pds = src.getPropertyDescriptors();
  14. Set<String> emptyNames = new HashSet<String>();
  15. for(java.beans.PropertyDescriptor pd : pds) {
  16. Object srcValue = src.getPropertyValue(pd.getName());
  17. if (srcValue == null) emptyNames.add(pd.getName());
  18. }
  19. String[] result = new String[emptyNames.size()];
  20. return emptyNames.toArray(result);
  21. }
  22. //封装同名称属性复制,但是空属性不复制过去
  23. public static void copyPropertiesIgnoreNull(Object src, Object target){
  24. BeanUtils.copyProperties(src, target, getNullPropertyNames(src));
  25. }
  26. public static void main(String[] args) {
  27. NewPerson newPerson = new NewPerson();
  28. newPerson.setName("miyue");//前台用户更新过的数据,例如前台只修改了用户名
  29. //下面我们假设是从数据库加载出来的老数据
  30. OldPerson oldPerson = new OldPerson();
  31. oldPerson.setSex("nv");
  32. oldPerson.setAge(5);
  33. //如果我们想把新数据更新到老数据这个对象里面,我们就可以借助BeanUtils.copyProperties()的方法如下:
  34. //BeanUtils.copyProperties(newPerson, oldPerson);
  35. copyPropertiesIgnoreNull(newPerson, oldPerson);
  36. System.out.println(newPerson.toString());
  37. System.out.println(oldPerson.toString());
  38. }
  39. }

 

  1. 打印结果:
  2. NewPerson{name='miyue', sex='null', age=0}
  3. OldPerson{name='miyue', sex='nv', age=0}

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/280680
推荐阅读
相关标签
  

闽ICP备14008679号