Hibernate增加一条记录,级联操作。

在增加一条信息时,没有设置级联操作,于是在数据库里每次都会新生成一个model_Id,没有添加进指定的模块里。
报错: object references an unsaved transient instance - save the transient instance before flushing。

在我这里出现了两种情况:

异常1:org.hibernate.TransientObjectException: object references an unsaved transient instance

解决方法:在我的主表Model中加入cascade="save-update"

异常2:not- null  property references a  null  or  transient  value

解决方法:将“一对多”关系中的“一”方,not-null设置为false

异常3:could not initialize proxy - the owning Session was closed
解决方法:设置 lazy false

你可能感兴趣的:(Hibernate增加一条记录,级联操作。)