标签:
1. myBatis单独使用时,使用SqlSession来处理事务:
2. 和Spring集成后,使用Spring的事务管理:
a. @Transactional方式:
在类路径下创建beans-da-tx.xml文件,在beans-da.xml(系列五)的基础上加入事务配置:
服务类:
在测试类中加入:
b. TransactionTemplate方式
在beans-da-tx.xml中添加:
在UserService类加入:
在SpringIntegrateTxTest类中加入:
注:不可catch Exception或RuntimeException而不抛出:
标签:
原文地址:http://www.cnblogs.com/zhuawang/p/5954839.html