码迷,mamicode.com
首页 > 编程语言 > 详细

严重: Servlet.service() for servlet [spring] in context with path [/XX] threw exception [Request

时间:2016-05-07 01:08:01      阅读:356      评论:0      收藏:0      [点我收藏+]

标签:

一、描述:最近在使用springmvc+spring+hibernate4.0进行整合开发时出现了

严重: Servlet.service() for servlet [spring] in context with path [/XX] threw exception [Request processing failed; nested exception is org.hibernate.HibernateException: No Session found for current thread] with root cause
org.hibernate.HibernateException: No Session found for current thread


二、问题:没找到session


三、讨论:1、网上好多的人说是由于没有配置OpenSessionInViewFilter,如下:

<span style="font-size:18px;"> <filter>
		<filter-name>OpenSessionInViewFilter</filter-name>
		<filter-class>org.springframework.orm.hibernate4.support.OpenSessionInViewFilter</filter-class>
		<init-param>
			<param-name>sessionFactoryBean</param-name>
			<param-value>sessionFactory</param-value>
		</init-param>
	</filter>
	<filter-mapping>
		<filter-name>OpenSessionInViewFilter</filter-name>
		<url-pattern>/</url-pattern>
	</filter-mapping></span>
但是这种方法行不同,配置这个过滤器是为了进行hibernate的延迟加载的问题。

         2、一部分人说可以把Dao层的getCurrentSession()方法换为openSession()方法;

         3、有的人又说可以在sessionFactory里面加上 <prop key="current_session_context_class">thread</prop>,但是产生了另外一个异常XX is not valid without active transaction(这个本人没解决,欢迎大家一起讨论)

         4、还有一种解决办法是在你的SpringMVC配置文件中加入这句:<aop:aspectj-autoproxy proxy-target-class="true" />  。


四、总结:我把每种方法都尝试了一遍最终总结出两条解决方法。

   方法1把Dao层的getCurrentSession()方法换为openSession()方法,这个方法可以行的通,原因如下:

            1、 采用getCurrentSession()创建的session会绑定到当前线程中,而采用openSession()
创建的session则不会
            2、 采用getCurrentSession()创建的session在commit或rollback时会自动关闭(所以出现了没有找到session的异常),而采用openSession()创建的session必须手动关闭。

  方法2:在你的SpringMVC配置文件中加入这句:<aop:aspectj-autoproxy proxy-target-class="true" /> 原因如下: 在配置文件中加入<aop:aspectj-autoproxy proxy-target-class="true"/>表示使用CGLib动态代理技术织入增强,如果目标对象没有实现接口,就必须使用GCLIB,spring 会自动在动态代理和CGLIB之间转换。


这也是本人的一点总结,如果有错误不足的地方,还请大家积极指出,参与讨论,谢谢!


严重: Servlet.service() for servlet [spring] in context with path [/XX] threw exception [Request

标签:

原文地址:http://blog.csdn.net/lurao/article/details/51335414

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