一尘不染

如何使用springframework BeanUtils copyProperties忽略空值?

spring

我想知道如何使用Spring Framework将属性从对象源复制到对象目的地,而忽略空值。

我实际上使用带有此代码的Apache beanutils

    beanUtils.setExcludeNulls(true);
    beanUtils.copyProperties(dest, source);

现在我需要使用Spring。

有什么帮助吗?


阅读 950

收藏
2020-04-16

共1个答案

一尘不染

你可以创建自己的方法来复制属性,而忽略空值。

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);
}

// then use Spring BeanUtils to copy and ignore null using our function
public static void myCopyProperties(Object src, Object target) {
    BeanUtils.copyProperties(src, target, getNullPropertyNames(src));
}
2020-04-16