image.png

引言

一般对象之间的拷贝,通常使用Spring 的BeanUtils.copyProperties()就可以了。

使用场景

例如有个对象要提交,希望后台只对有值的数据进行更新。
BeanUtils.copyProperties也是不大支持的。因此我们要肿么办呢?

实现方式

完全自己实现

使用Java的反射机制,来自己实现。本着不重复造轮子的目的,这里就不安利了,想要学习一下,可以参考下文。

改良Spring的BeanUtils

改良Spring的BeanUtils.copyProperties在拷贝属性时忽略空值。

  public static String[] getNullPropertyNames (Object source) {
        final BeanWrapper src = new BeanWrapperImpl(source);
        java.beans.PropertyDescriptor[] pds = src.getPropertyDescriptors();

        Set<String> emptyNames = new HashSet<String>();
        for(java.beans.PropertyDescriptor pd : pds) {
            Object srcValue = src.getPropertyValue(pd.getName());
            if (srcValue == null) emptyNames.add(pd.getName());
        }
        String[] result = new String[emptyNames.size()];
        return emptyNames.toArray(result);
    }

    public static void copyPropertiesIgnoreNull(Object src, Object target){
        BeanUtils.copyProperties(src, target, getNullPropertyNames(src));
    }

使用:

BeanUtils.copyProperties(examLifeStyle, examDetail, getNullPropertyNames(examLifeStyle));
使用第三方包

使用hutool开源库为我们提供了更为强大的Bean工具-BeanUtil。

<dependency>
    <groupId>cn.hutool</groupId>
    <artifactId>hutool-all</artifactId>
    <version>4.1.14</version>
</dependency>

使用:

BeanUtil.copyProperties(oldDetail.get(),userDetail,true, CopyOptions.create().setIgnoreNullValue(true).setIgnoreError(true));