标签:hibernate springmvc could not obtain tra session spring
查了一下相关资料,整理如下:
原因:Hibernate4 No Session found for current thread原因
解决方法:
1. 在spring 配置文件中加入
我也出现了这个问题,但是我在web.xml中增加了filter就可以了。也许你的问题不是这个,但我的这个问题是这么解决的。 <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>
以上亲测,都可以解决!
SpringMVC4+Hibernate4运行报错Could not obtain transaction-synchronized Session for current thread
标签:hibernate springmvc could not obtain tra session spring
原文地址:http://blog.csdn.net/caiwenfeng_for_23/article/details/45242545