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

Spring Transaction

时间:2014-07-04 06:35:29      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:spring   public   

spring 推荐使用

public void save(Good good) {
        this.sessionFactory.getCurrentSession().save(good);
    }

以上编写dao代码,推荐使用hibernateTemplate,避免框架的入侵。这种方式如果不配置事务管理

<!--<aop:config>-->
        <!--<aop:pointcut id="goodServiceMethods" expression="execution(* cn.bb.service.GoodService.*(..))"/>-->
        <!--<aop:advisor advice-ref="txAdvice" pointcut-ref="goodServiceMethods"/>-->
    <!--</aop:config>-->

    <!--<tx:advice id="txAdvice" transaction-manager="transactionManager">-->
        <!--<tx:attributes>-->
            <!--<tx:method name="increasePrice*" propagation="REQUIRED"/>-->
            <!--<tx:method name="save*" propagation="REQUIRED"/>-->
            <!--<tx:method name="*" propagation="SUPPORTS" read-only="true"/>-->
        <!--</tx:attributes>-->
    <!--</tx:advice>-->

就会抛出异常

org.hibernate.HibernateException: No Hibernate Session bound to thread, and configuration does not allow creation of non-transactional one here


如果不注释上面的代码则程序能正常运行。

public void saveGoodBatch(List<Good> goodList) throws Exception{
        for(Good good : goodList) {
            saveGood(good);
//            goodDao.save(good); //都行
        }
//        throw new Exception("sss"); //不会回滚
        throw new RuntimeException("aa"); //会回滚
    }


在service已经配置了事务的方法中 使用throw new Exception() 不会导致事务回滚;使用throw new RuntimeException 就会导致事务回滚,至于方法中是直接调用dao的还是service中无所谓。

Spring Transaction,布布扣,bubuko.com

Spring Transaction

标签:spring   public   

原文地址:http://chenjizhan.blog.51cto.com/2577729/1433887

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