Hibernate 异常org.hibernate.LazyInitializationException: could not initialize prox
org.hibernate.LazyInitializationException: could not initialize proxy - no Session
这是一个lazy使用后的Exception,使用迟时加载,在session(hibernate里的session),关闭后使用该对象的未加载变量,也就是说session已经关闭,没有保存到内存中,然后你使用了,导致该异常。原因是hibernate的session已经关闭,集合没有被初始化。在hibernate中:hibernate3 默认支持延迟加载(lazy="proxy"我们可以把proxy看作是true),hibernate2 默认立即加载 (lazy="false")。在hibernate3中,所有的实体设置文件(user.hbm.xml)中的lazy属性都被默认设成了true,就是当这个类没有被调用时,延时加载,导致了以上情况的发生,在配置文件中将lzay属性设为false就可以了。
解决方法1:因为<may-to-one>or<one-to-may>的lazy属性默认为:lazy = "proxy",所以可以将<many-to-one> & <set> 中设置 lazy="false" 。如果还不行,根据自己需求,经过我的仔细排查放在set一端不行,那就放在<many-to-one>那端。
解决方法2:在web.xml中加入程序代码
<filter>
<filter-name>hibernateFilter</filter-name>
<filter-class> org.springframework.orm.hibernate3.support.OpenSessionInViewFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>hibernateFilter</filter-name>
<url-pattern>*.do</url-pattern>
</filter-mapping>
解决方法3:
例如:from Item i left join fetch i.parentItem ii
解释一下Item表是一个自关联的表,它的关联关系在hbm.xml中配置好了。
如下:程序代码
<column name="PARENT_ID"></column>
</many-to-one>
在Item类中程序代码
利用left join fetch可以完美的解决这个问题。
上一篇: 有关于宋高宗的评价是什么样的 赵构真的是一个昏君吗
下一篇: python实现简单的聊天
推荐阅读
-
hibernate异常找不到get方法org.hibernate.PropertyNotFoundException: Could not find a get
-
java.lang.NoClassDefoundError:Could not initialize class sun.awt.X11GraphicsEnvironment异常
-
解决:org.hibernate.LazyInitializationException: could not initialize proxy - no Session
-
解决异常org.hibernate.exception.ConstraintViolationException: could not delete: HibernateJBPM
-
异常org.hibernate.QueryException: could not resolve property的原因
-
异常org.hibernate.QueryException: could not resolve property的原因
-
hibernate异常找不到get方法org.hibernate.PropertyNotFoundException: Could not find a get
-
org.hibernate.LazyInitializationException: could not initialize proxy [xxxx] - no Session异常
-
Hiberante异常之org.hibernate.LazyInitializationException: could not initialize proxy - no Session
-
【记录】异常:org.hibernate.LazyInitializationException: could not initialize proxy - no Session