我想知道如何使用Spring Framework将属性从Object Source复制到Object Dest忽略null值.
我实际上使用Apache beanutils,使用此代码
beanUtils.setExcludeNulls(true);
beanUtils.copyProperties(dest, source);
去做吧.但现在我需要使用Spring.
有帮助吗?
多谢
解决方法:
您可以创建自己的方法来复制属性,同时忽略空值.
public static String[] getNullPropertyNames (Object source) {
final BeanWrapper src = new BeanWrapperImpl(source);
java.beans.PropertyDescriptor[] pds = src.getPropertyDescriptors();
Set<String> emptyNames = new HashSet<String>();
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);
}
// then use Spring BeanUtils to copy and ignore null
public static void myCopyProperties(Object src, Object target) {
BeanUtils.copyProperties(src, target, getNullPropertyNames(src))
}