使用OpenJPA 的时候merge一个model, 他的某一个属性为空,但是本来那个属性不为空,发现不能使其变为空。
if (gradebookitem.getStandards() == null){
List<Standards> standards = new ArrayList<Standards>();
gradebookitem.setStandards(standards);
}
可以进行如上操作,使其变为空。
使用OpenJPA 的时候merge一个model, 他的某一个属性为空,但是本来那个属性不为空,发现不能使其变为空。
if (gradebookitem.getStandards() == null){
List<Standards> standards = new ArrayList<Standards>();
gradebookitem.setStandards(standards);
}
可以进行如上操作,使其变为空。