对象属性拷贝(BeanUtils.copyProperties)用法

系列文章目

对象属性拷贝(BeanUtils.copyProperties)用法

一、BeanUtils.copyProperties参数赋值顺序,根据导包不同,方式不同

一个为org.springframework.beans.BeanUtils,

另一个是org.apache.commons.beanutils.BeanUtils,

这两个类在不同的包下面,而这两个类的copyProperties()方法里面传递的参数赋值是相反的。

例如:
a,b为对象
BeanUtils.copyProperties(a, b);
BeanUtils是org.springframework.beans.BeanUtils,a拷贝到b
BeanUtils是org.apache.commons.beanutils.BeanUtils,b拷贝到a

二、将源对象的属性拷贝到目标对象

    /**
     * by HOUJL
     * 对象属性拷贝 <br>
     * 将源对象的属性拷贝到目标对象
     * <p>
     * param source 源对象
     * param target 目标对象
     */\
		import org.springframework.beans.BeanUtils;
    public static void copyProperties(Object source, Object target) {
        try {
            BeanUtils.copyProperties(source, target, ParamsUtils.getNullPropertyNames(source));
        } catch (BeansException e) {
            LOGGER.error("BeanUtil property copy  failed :BeansException", e.getMessage());
        } catch (Exception e) {
            LOGGER.error("BeanUtil property copy failed:Exception", e.getMessage());
        }
    }

三、将源对象的属性拷贝到目标对象

    /**
     * by HOUJL
     * 获取所有字段为null的属性名
     * 用于BeanUtils.copyProperties()拷贝属性时,忽略空值
     * <p>
     * param source
     * return
     */
    public static String[] getNullPropertyNames(Object source) {
        final BeanWrapper src = new BeanWrapperImpl(source);
        java.beans.PropertyDescriptor[] pds = src.getPropertyDescriptors();

        Set<String> emptyNames = new HashSet<>();
        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 main(String[] args) {
        Order dbOrder = new Order();
        ParamsUtils.copyProperties(reportVo, dbOrder);
        //字段处理
        dbOrder.setCreateBy(ParamsUtils.getStrParam(reportVo.getCreateby(), null));
        dbOrder.setCreatetime(ParamsUtils.getDateParam(reportVo.getCreatetime(), null));
        dbOrder.setPatientid(ParamsUtils.getStrParam(reportVo.getPatientNumber(), null));
        dbOrder.setId(null);
        if (orderService.save(dbOrder)){
            return ResultUtils.successResult("保存成功");
        }
        return ResultUtils.errorResult("保存失败");
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值