首页 > 其他 > 详细

non-transactional

时间:2018-04-14 10:03:41      阅读:223      评论:0      收藏:0      [点我收藏+]

this.getHibernateTemplate().getSessionFactory().getCurrentSession().createQuery(queryString)报错No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here,因为没有配置事务

 

        <bean id="txManager" class="org.springframework.orm.hibernate3.HibernateTransactionManager">  
            <property name="sessionFactory" ref="sessionFactory" />  
            <property name="dataSource" ref="dataSource"/>  
        </bean>  
        <tx:advice id="txAdvice" transaction-manager="txManager">  
          <tx:attributes>  
              <tx:method name="*" propagation="REQUIRED" />  
           </tx:attributes>  
        </tx:advice>  

 

non-transactional

原文:https://www.cnblogs.com/520future/p/8830301.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!