hibernate中报错could not initialize proxy - no Session的解决方法

hibernate中报错:could not initialize proxy - no Session,怎么解决?
解决方法:
在该hbm文件中的 many-to-one 的最后加上:lazy=”false”,请看:

  <many-to-one name="kecheng" class="org.entity.Kecheng" fetch="select" lazy="false">
            <column name="class_kecheng" />
        </many-to-one>

然后就可以了。
这里写图片描述

posted @ 2018-04-22 21:54  穆雄雄  阅读(123)  评论(0编辑  收藏  举报