原先使用hibernate 3 的时候一切都是正常的,当时用的是继承HibernateDaoSupport来获取session 现在改成用hibernate 4了,所有dao代码都改了,改成通过sessionFactory.getCurrentSession()获取session。但是现在 spring3.2+hibernate 4 因为在service中开启了一个线程(处理时间比较长,所有接收请求后,在service中调用线程池来执行了),然后线程中调用了dao,然后无法获取session。报错:org.hibernate.HibernateException: No Session found for current thread。
taskExecutor.execute(new productImportTask(proDao));
下面是线程池的配置
<bean id="executor" class="org.springframework.scheduling.concurrent.ThreadPoolTaskExecutor"> <property name="corePoolSize" value="5" /> <property name="maxPoolSize" value="50" /> <property name="queueCapacity" value="250" /> </bean>
好像是因为这个线程中没有事务,所以获取不了session,网上找到一种把dao也加入到事务中
<aop:config expose-proxy="true"> <aop:pointcut id="managerMethod" expression="execution(* com.news.service.*Service..*.*(..)) or execution(* com.news.dao.*Dao..*.*(..))" /> <aop:advisor pointcut-ref="managerMethod" advice-ref="txAdvice" /> </aop:config>
这个方法试了确实能获取session了,但是这样有缺陷,一个业务会涉及多个dao,那事务就不好控制了。
我想问各位高手们有什么好的解决方案吗?谢谢了。
业务在service层,事务放到业务层
HIbernate4要配置这个属性,才能操作事物
<propkey="hibernate.current_session_context_class">org.springframework.orm.hibernate4.SpringSessionContext
</prop>
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。