码迷,mamicode.com
首页 > Web开发 > 详细

hibernate 问题集

时间:2015-01-22 17:22:22      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

1、Could not obtain transaction-synchronized Session for current thread

解决方法:

在web.xml中加入如下配置:

 <filter>
        <filter-name>SpringOpenSessionInViewFilter</filter-name>
        <filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
    </filter>
    <filter-mapping>
        <filter-name>SpringOpenSessionInViewFilter</filter-name>
        <url-pattern>/*</url-pattern>
    </filter-mapping>

 

hibernate 问题集

标签:

原文地址:http://www.cnblogs.com/tyb1222/p/4241754.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!