标签:session hibernate spring 声明式事务 spring整合hibernate
在SSH中,有时候会遇到not session found for current session的问题,刚刚我也遇到一个,现在总结一下:
<!--1. 配置hibernate的事务管理器 --> <bean id="transactionManager" class="org.springframework.orm.hibernate4.HibernateTransactionManager"> <property name="sessionFactory" ref="sessionFactory"></property> </bean> <!-- 2.配置事务属性 除了下面定义的方法,其他的方法都不走事务 假如出现not session found for current session这个 错误的话 可以看看是不是调用的方法没有在下面这个开启事务 --> <tx:advice id="txAdvice" transaction-manager="transactionManager"> <tx:attributes> <tx:method name="get*" read-only="true"/> <tx:method name="find*" read-only="true"/> <tx:method name="save*" propagation="REQUIRED" /> <tx:method name="do*" propagation="REQUIRED" /> <tx:method name="update*" propagation="REQUIRED" /> <tx:method name="delete*" propagation="REQUIRED" /> <tx:method name="select*" propagation="REQUIRED" /> <tx:method name="*" propagation="SUPPORTS" read-only="true"/> </tx:attributes> </tx:advice> <!-- 3.配置事务切入点,所有Service包括子包都切入,再把事务属性和事务切入点管理起来 --> <aop:config> <aop:pointcut expression="execution(* com.eqmt.service.*.*(..))" id="txtPointcut"/> <aop:advisor advice-ref="txAdvice" pointcut-ref="txtPointcut"/> </aop:config>
【学习笔记】not session found for current session原因分析
标签:session hibernate spring 声明式事务 spring整合hibernate
原文地址:http://blog.csdn.net/nthack5730/article/details/45478595