编程中犯过的错过

一Hibernate save时,外键的值的对象保存不成功。
1)可能是没有配置hbm文件
			name="testQuestionLibrary"
class="com.htsoft.est.model.examLibrary.TestQuestionLibrary"
not-null="false"
fetch="select"
>



2)或者没有赋值给对象
先获得com.htsoft.est.model.examLibrary.TestQuestionLibrary这个实体,再赋值给update的对象。

你可能感兴趣的:(JAVA技术)