必威体育Betway必威体育官网
当前位置:首页 > IT技术

BeanUtils.copyProperties使用

时间:2019-11-06 06:44:39来源:IT技术作者:seo实验室小编阅读:58次「手机版」
 

beanutils.copyproperties

Reference:https://blog.csdn.net/z15732621582/article/details/78767835

beanutils提供对java反射和自省API的包装。其主要目的是利用反射机制对JavaBean的属性进行处理。我们知道,一个JavaBean通常包含了大量的属性,很多情况下,对JavaBean的处理导致大量get/set代码堆积,增加了代码长度和阅读代码的难度。

注意:属性复制,不同jar中的方法,用法不一样。

1、package org.Springframework.beans;中的

beanutils.copyproperties(A,B);

是A中的值付给B

FinCpDocDO  finCpDoc = finCpDocService.selectByDocNo(orderNo);
FinCpDocDto finCpDto = new FinCpDocDto();
if (finCpDoc == null){
   throw new ServiceException("查无该订单" + "orderNo:" + orderNo);
}
try{
   BeanUtils.copyProperties(finCpDoc, finCpDto);

2、package org.apache.commons.beanutils;(常用)

BeanUtils.copyProperties(A,B);

是B中的值付给A

for(OboFeeDO feeDO : oboFeeList){
    if(feeDO.getPayTime()!=null){
        ErpOboFeeDto feeDto = new ErpOboFeeDto();
        BeanUtils.copyProperties(feeDto, feeDO);
        oboFeList.add(feeDto);
    }
}

文章最后发布于: 2019-03-21 09:48:12

相关阅读

BeanUtils.populate( Object bean, Map properties ),

BeanUtils.populate( Object bean, Map properties ) 先遍历map<k,v>中的k 如果k和bean相同 就将v的值赋给bean 补充:map中的数据

BeanUtils.populate的作用

BeanUtils.populate的作用 转自: http://blog.sina.com.cn/s/blog_84f5d20b0100tyuw.html 首先,它是在org.apache.commons.beanut

BeanUtils.populate的用法

BeanUtils位于org.apache.commons.beanutils.BeanUtils下面,其方法populate的作用解释如下:完整方法:BeanUtils.populate( Object be

BeanUtils.populate的作用

首先,它是在org.apache.commons.beanutils.BeanUtils包中的一个方法。 方法的作用:用来将一些 key-value 的值(例如 hashmap)映射到 b

BeanUtils.copyProperties方法复制不同对象间的属性值

1:以下两个不同的包都存在BeanUitls.copyProperties方法org.springframework.beans.BeanUtils.copyProperties(Object source, Obj

分享到:

栏目导航

推荐阅读

热门阅读