一、描述:最近在使用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()方法,这个方法可以行的通,原因如下:
方法2:在在你的SpringMVC配置文件中加入这句:<aop:aspectj-autoproxy proxy-target-class="true" /> 原因如下: 在配置文件中加入<aop:aspectj-autoproxy proxy-target-class="true"/>表示使用CGLib动态代理技术织入增强,如果目标对象没有实现接口,就必须使用GCLIB,spring 会自动在动态代理和CGLIB之间转换。
这也是本人的一点总结,如果有错误不足的地方,还请大家积极指出,参与讨论,谢谢!