Java不同對象之間復制屬性


// 導入包
import org.springframework.beans.BeanUtils;

/**
* 調用工具復制2個對象之間的屬性 2個JavaBean對象復制的屬性名相同 淺拷貝
* @param target
* @return
*/
private Class2 copyProperties(Class2 target){
// 不需要復制的字段
String[] ignoreProperties = new String[]{"bz","createdat","createdby","updatedat","updatedby"};
Class1 source= myService.get(target.getId());
BeanUtils.copyProperties(source,target,ignoreProperties);
return target;
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM