如何使用弹簧框架BeanUtils copyProperties忽略空值?

2022-09-01 02:45:25

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

我实际上使用Apache beanutils,用这个代码

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

来做到这一点。但现在我需要使用春天。

有什么帮助吗?

很多


答案 1

您可以创建自己的方法来复制属性,同时忽略 null 值。

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

答案 2

Java 8 版本的 getNullPropertyNames 方法,来自 alfredx 的帖子

public static String[] getNullPropertyNames(Object source) {
    final BeanWrapper wrappedSource = new BeanWrapperImpl(source);
    return Stream.of(wrappedSource.getPropertyDescriptors())
            .map(FeatureDescriptor::getName)
            .filter(propertyName -> wrappedSource.getPropertyValue(propertyName) == null)
            .toArray(String[]::new);
}