1 . a different object with the same identifier value was already associated with the session: [VoBean.Employee#2]
原因:session中已经存在相同的对象,一般发生在级联修改该对象的set集合中对象已经存在相同的对象
解决:对象的set集合设置为一个空的set集合!
2.object references an unsaved transient instance - save the transient instance before flushing: VoBean.Department;
nested exception is org.hibernate.TransientObjectException: object references an unsaved transient instance - save the
transient instance before flushing: VoBean.Department
原因: 一个对象引用了一个没有保存对象(一般该对象为null)
解决 : 确保引用对象不为空
解决Hibernate异常
本文解决了两个常见的Hibernate异常:一是当会话中已存在相同标识符值的不同对象时产生的错误;二是对象引用了未保存的瞬态实例的问题。文章提供了具体的解决办法。
603

被折叠的 条评论
为什么被折叠?



