系列文章目
对象属性拷贝(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("保存失败");
}