最近在寫一個小玩意的時候,須要在兩個對象之間拷貝屬性java
使用的是app
BeanUtils.copyProperties
spa
但是,有一個問題code
就是當src對象的鍵值爲Null時對象
就會把target對象的對應鍵值覆蓋成空了blog
這不科學ip
因此找了下面的這個方式來解決get
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); } public static void copyPropertiesIgnoreNull(Object src, Object target){ BeanUtils.copyProperties(src, target, getNullPropertyNames(src)); }