解决Hibernate:could not initialize proxy - no Session

Posted chenssy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Hibernate:could not initialize proxy - no Session相关的知识,希望对你有一定的参考价值。


        这个从字面上就可以看出:不能初始化,没有session。也就说主要原因是因为session关闭了。

        在Hibernate中,<many-to-one.../>中的lazy默认为proxy。这样hibernate在数据库中查询数据时事不会把关联的

对象查出来的,而是保存一个获得该值得方法:getXxxx()。当我们需要使用这个值的时候,也就是使用getXxx()方法来

用的时候,Hibernate就会利用这个方法从数据库中获取相应的数据。但是很不幸,我们的session早就关闭了。这

是因为Hibernate的懒加载策略,在Hibernate中是使用sessionFactory来管理session,我们每进行一次数据库操作时

都会新建一个session对象,当我们操作完成后,hibernate就会在dao层立即关闭该session。这样做就可以严格控制

session,避免出现低级错误。

 

       对于这种错误,一般都会有三个方法可以解决。

       1把lazy设成false。这个是最简单的办法,个人认为也是比较笨的方法。因为这是在用效率作为代价。

       2使用OpenSessionInViewFilter。这种方法是将session交给servlet filter来管理,每当一个请求来之后就会开

启一个session,只有当响应结束后才会关闭。如下:

        <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>/*</url-pattern> 
        </filter-mapping> 

 

       上面的配置文件时在web.xml中配置的。

 

       3将hibernate的抓起策略改为join。也就是是left join fetch或inner join fetch语法。就是在<many-to-one../>中配

置lazy="false" fetch="join"即可。如:

    <many-to-one name="worker" lazy="false" fetch="join" class="com.paixie.domain.Worker">

             <column name="positionId"></column>

        </many-to-one>


 

以上是关于解决Hibernate:could not initialize proxy - no Session的主要内容,如果未能解决你的问题,请参考以下文章

Java EE 之 Hibernate异常解决:org.hibernate.exception.SQLGrammarException: could not execute statement(示例代

懒加载的解决方法(全)org.hibernate.LazyInitializationException: could not initialize proxy - no Session

bug记录jpa 解决org.hibernate.lazyinitializationexception could not initialize proxy - no session

hibernate 错误 could not determine type for

解决Exception:Could not open Hibernate Session for transaction; nested exception is java.lang.NoClassD

Hibernate插入错误:GenericJDBCException: could not insert: