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); } }
转载出处:https://blog.csdn.net/yangschfly/article/details/68490325
原文地址:https://www.cnblogs.com/sunding/p/9482031.html
时间: 2024-11-01 00:23:40