zoukankan      html  css  js  c++  java
  • object references an unsaved transient instance

    异常1:not-null property references a null or transient value
    解决方法:将“一对多”关系中的“一”方,not-null设置为false
    (参考资料:http://www.thearcmind.com/confluence/pages/viewpage.action?pageId=212)

    异常2:org.hibernate.TransientObjectException: object references an unsaved transient instance
    解决方法:cascade="save-update,persist"
    (参考资料:http://www.laliluna.de/254.html)

    异常3:org.hibernate.QueryException: could not resolve property
    解决方法:"from Category category where category.userID = :userID"修改为"from Category category whereuserID = :userID"或者"from Category category where category.user.id = :userID"
    (参考资料:http://www.laliluna.de/277.html)

    异常4:could not initialize proxy - the owning Session was closed
    解决方法:设置lazyfalse

    (参考资料:http://forum.springframework.org/showthread.PHP?t=27993)


    org.hibernate.TransientObjectException: object references an unsaved transient instance - save the transient instance before flushing:

    这主要是在ManyToOne级联操作时遇到,比如new了一个新对象,在未保存之前将它保存进了一个新new的对象(也即不是持久态)。

    解决办法是在保存或更新之前把这个对象查出来(这样就是一个持久态)。

    解决办法是将many-to-one的级联设为:cascade="save-update,persist"


  • 相关阅读:
    2013-9-29 通信原理学习笔记
    《大数据时代》阅读笔记
    《人人都是产品经理》阅读笔记一
    2013-8-13 信道接入技术研究学习
    2013-8-6 ubuntu基本操作
    2013-7-30 802.1X企业级加密
    2013-7-29 杂记
    2013-7-28 802.11n帧聚合
    2013-7-27 802.1X学习
    vue+node+mongoDB前后端分离个人博客(入门向)
  • 原文地址:https://www.cnblogs.com/archermeng/p/7537457.html
Copyright © 2011-2022 走看看