废话不多说上代码…
List<TransFlow> oldList = Lists.newArrayList();
Trans trans = new Trans();
Trans oldTrans = oldList.get(0);
BeanUtils.copyProperties(oldTrans ,trans , KeyConstants.STATE,KeyConstants.BATCH_NO,KeyConstants.DR_CR_FLAG);
将oldTrans 值复制到 trans 其中KeyConstants.STATE,KeyConstants.BATCH_NO,KeyConstants.DR_CR_FLAG属性值除外
除去非空字段方法
public static String[] getNullPropertyNames (Object source) {
final BeanWrapper src = new BeanWrapperImpl(source);
PropertyDescriptor[] pds = src.getPropertyDescriptors();
Set<String> emptyNames = new HashSet<String>();
for(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);
}
调用
BeanUtils.copyProperties(oldTrans ,trans,getNullPropertyNames(oldTrans ));
参考链接
https://www.jianshu.com/p/17c4fcf59418
本文介绍了如何使用Java BeanUtils库实现对象属性的高效复制,重点讲解了如何通过copyProperties方法排除特定属性并仅复制非空字段。方法包括getNullPropertyNames函数获取空属性名数组,确保数据迁移的精确性。
1521

被折叠的 条评论
为什么被折叠?



