spring BeanUtils.copyProperties只拷貝不為null的屬性
在MVC的開發(fā)模式中經(jīng)常需要將model與pojo的數(shù)據(jù)綁定本辐,apache和spring的工具包中都有BeanUtils践险,使用其中的copyProperties方法可以非常方便的進(jìn)行這些工作,但在實(shí)際應(yīng)用中發(fā)現(xiàn),對(duì)于null的處理不太符合個(gè)人的需要熏迹,例如在進(jìn)行修改操作中只需要對(duì)model中某一項(xiàng)進(jìn)行修改蚓挤,那么一般我們?cè)陧?yè)面上只提交model的ID及需要修改項(xiàng)的值思犁,這個(gè)時(shí)候使用BeanUtils.copyProperties會(huì)將其他的null綁定到pojo中去萨驶。
BeanUtils.copyProperties的使用要導(dǎo)入:
org.springframework.beans.BeanUtils;
直接上代碼:
package com.test;
import com.hourumiyue.system.SpringUtil;
import org.springframework.beans.BeanUtils;
public class TestBeanUtiles {
public static void main(String[] args) {
NewPerson newPerson = new NewPerson();
newPerson.setName("miyue");//前臺(tái)用戶更新過(guò)的數(shù)據(jù)歉摧,例如前臺(tái)只修改了用戶名
//下面我們假設(shè)是從數(shù)據(jù)庫(kù)加載出來(lái)的老數(shù)據(jù)
OldPerson oldPerson = new OldPerson();
oldPerson.setSex("nv");
oldPerson.setAge(5);
//如果我們想把新數(shù)據(jù)更新到老數(shù)據(jù)這個(gè)對(duì)象里面艇肴,我們就可以借助BeanUtils.copyProperties()的方法如下:
BeanUtils.copyProperties(newPerson, oldPerson);
System.out.println(newPerson.toString());
System.out.println(oldPerson.toString());
}
}
上面的代碼打印結(jié)果如下:
NewPerson{name='miyue', sex='null', age=0}
OldPerson{name='miyue', sex='null', age=0}
從上面我們可以看出腔呜,新的對(duì)象確實(shí)把修改的數(shù)據(jù)更新給老對(duì)象了,但是它卻把原來(lái)為null或者int類型默認(rèn)為0的值也都賦給了老對(duì)象再悼,這肯定不合理的核畴,下面我們自己寫了一個(gè)加工類,大家可以直接調(diào)用我們加工類的copyPropertiesIgnoreNull()方法即可忽略null值冲九,避免老數(shù)據(jù)被null覆蓋的尷尬
/**
* 版權(quán)所有 (c) 2018谤草,中金支付有限公司
*/
package com.yanshemiyue.system;
import org.springframework.beans.BeanUtils;
import org.springframework.beans.BeanWrapper;
import org.springframework.beans.BeanWrapperImpl;
import org.springframework.beans.BeansException;
import org.springframework.context.ApplicationContext;
import org.springframework.context.ApplicationContextAware;
import java.util.HashSet;
import java.util.Set;
/**
* 類說(shuō)明
*
* <pre>
* Modify Information:
* Author Date Description
* ============ =========== ============================
* houru 2018年1月4日 Create this file
* </pre>
*
*/
public class SpringUtil implements ApplicationContextAware {
/**
* 當(dāng)前IOC
*
*/
private static ApplicationContext applicationContext;
/**
* * 設(shè)置當(dāng)前上下文環(huán)境跟束,此方法由spring自動(dòng)裝配
*
*/
@Override
public void setApplicationContext(ApplicationContext arg0)
throws BeansException {
applicationContext = arg0;
}
/**
* 從當(dāng)前IOC獲取bean
*
* @param id
* bean的id
* @return
*
*/
public static Object getObject(String id) {
Object object = null;
object = applicationContext.getBean(id);
return object;
}
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));
}
}
調(diào)用:copyPropertiesIgnoreNull
package com.test;
import com.yxjr.system.SpringUtil;
public class TestBeanUtiles {
public static void main(String[] args) {
NewPerson newPerson = new NewPerson();
newPerson.setName("miyue");//前臺(tái)用戶更新過(guò)的數(shù)據(jù),例如前臺(tái)只修改了用戶名
//下面我們假設(shè)是從數(shù)據(jù)庫(kù)加載出來(lái)的老數(shù)據(jù)
OldPerson oldPerson = new OldPerson();
oldPerson.setSex("nv");
oldPerson.setAge(5);
//如果我們想把新數(shù)據(jù)更新到老數(shù)據(jù)這個(gè)對(duì)象里面丑孩,我們就可以借助BeanUtils.copyProperties()的方法如下:
//BeanUtils.copyProperties(newPerson, oldPerson);
SpringUtil.copyPropertiesIgnoreNull(newPerson, oldPerson);
System.out.println(newPerson.toString());
System.out.println(oldPerson.toString());
}
}
打印結(jié)果:
NewPerson{name='miyue', sex='null', age=0}
OldPerson{name='miyue', sex='nv', age=0}
現(xiàn)在就可以看出老數(shù)據(jù)沒有被null覆蓋