BeanUtils.copyProperties忽略null值,只拷贝非null值属性

package com.sf.eos.bpds.core.utils;

import com.google.common.collect.Lists;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.BeanWrapper;
import org.springframework.beans.BeanWrapperImpl;

import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class CopyObjectUtil {
        /**
         * @param input 输入集合
         * @param clzz  输出集合类型
         * @param <E>   输入集合类型
         * @param <T>   输出集合类型
         * @return 返回集合
         */
        public static <E, T> List<T> convertList2List(List<E> input, Class<T> clzz) {
            List<T> output = Lists.newArrayList();
            if (input != null && !input.isEmpty()) {
                for (E source : input) {
                    T target = BeanUtils.instantiate(clzz);
                    BeanUtils.copyProperties(source, target);
                    output.add(target);
                }
            }
            return output;
        }


        /**
         * @Description: 忽略null值/只拷贝非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);
    }

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


转载:BeanUtils.copyProperties忽略null值工具类

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
BeanUtils.copyProperties方法可以用于对象之间的属性拷贝,但默认情况下它会将源对象的所有属性拷贝到目标对象中,包括null。如果需要忽略源对象中的null属性,可以使用BeanUtils.copyProperties方法的第三个参数,即属性过滤器。 属性过滤器是一个实现了org.springframework.be.BeanUtils.CopyablePropertyFilter接口的对象,它可以控制哪些属性需要被拷贝。在属性过滤器的accept方法中,可以根据属性是否为null来决定是否拷贝属性。 以下是一个示例代码,演示了如何使用BeanUtils.copyProperties方法忽略null: ```java import org.springframework.beans.BeanUtils; import org.springframework.beans.BeanWrapper; import org.springframework.beans.BeanWrapperImpl; import org.springframework.beans.CopyablePropertyFilter; public class CopyPropertiesExample { public static void main(String[] args) { SourceObject source = new SourceObject(); source.setName("John"); source.setAge(25); source.setAddress(null); TargetObject target = new TargetObject(); BeanUtils.copyProperties(source, target, (sourceValue, targetValue, targetPropertyDescriptor) -> { // 忽略源对象中的null属性 return sourceValue != null; }); System.out.println(target.getName()); // 输出:John System.out.println(target.getAge()); // 输出:25 System.out.println(target.getAddress()); // 输出:null } } class SourceObject { private String name; private int age; private String address; // 省略getter和setter方法 } class TargetObject { private String name; private int age; private String address; // 省略getter和setter方法 } ``` 在上述示例中,我们创建了一个SourceObject对象,并设置了name、age和address属性,其中address属性null。然后我们创建了一个TargetObject对象,并使用BeanUtils.copyProperties方法将SourceObject的属性拷贝到TargetObject中,通过属性过滤器忽略了源对象中的null属性。最后我们输出了TargetObject对象的属性,可以看到address属性null
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值