博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
spring整合mybatis是如何配置事务的?
阅读量:5736 次
发布时间:2019-06-18

本文共 3015 字,大约阅读时间需要 10 分钟。

作者:郭无心

链接:https://www.zhihu.com/question/30206875/answer/84675373
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

http://czj4451.iteye.com/blog/2037759
mybatis的事务管理:
一、单独使用mybatis组件,使用SqlSession来处理事务:
public class MyBatisTxTest {	private static SqlSessionFactory sqlSessionFactory;	private static Reader reader;	@BeforeClass	public static void setUpBeforeClass() throws Exception {		try {			reader = Resources.getResourceAsReader("Configuration.xml");			sqlSessionFactory = new SqlSessionFactoryBuilder().build(reader);		} finally {			if (reader != null) {				reader.close();			}		}	}		@Test	public void updateUserTxTest() {		SqlSession session = sqlSessionFactory.openSession(false); // 打开会话,事务开始				try {			IUserMapper mapper = session.getMapper(IUserMapper.class);			User user = new User(9, "Test transaction");			int affectedCount = mapper.updateUser(user); // 因后面的异常而未执行commit语句			User user = new User(10, "Test transaction continuously");			int affectedCount2 = mapper.updateUser(user2); // 因后面的异常而未执行commit语句			int i = 2 / 0; // 触发运行时异常			session.commit(); // 提交会话,即事务提交		} finally {			session.close(); // 关闭会话,释放资源		}	}}

测试会发现数据没有被修改

和Spring集成后,使用Spring的事务管理:
org.logicalcobwebs.proxool.ProxoolDriver
proxool.gcld
@Service("userService")public class UserService {	@Autowired	IUserMapper mapper;	public int batchUpdateUsersWhenException() { // 非事务性		User user = new User(9, "Before exception");		int affectedCount = mapper.updateUser(user); // 执行成功		User user2 = new User(10, "After exception");		int i = 1 / 0; // 抛出运行时异常		int affectedCount2 = mapper.updateUser(user2); // 未执行		if (affectedCount == 1 && affectedCount2 == 1) {			return 1;		}		return 0;	}	@Transactional	public int txUpdateUsersWhenException() { // 事务性		User user = new User(9, "Before exception");		int affectedCount = mapper.updateUser(user); // 因后面的异常而回滚		User user2 = new User(10, "After exception");		int i = 1 / 0; // 抛出运行时异常,事务回滚		int affectedCount2 = mapper.updateUser(user2); // 未执行		if (affectedCount == 1 && affectedCount2 == 1) {			return 1;		}		return 0;	}}
@RunWith(SpringJUnit4ClassRunner.class)@ContextConfiguration(locations = { "classpath:beans-da-tx.xml" })public class SpringIntegrateTxTest {	@Resource	UserService userService;	@Test	public void updateUsersExceptionTest() {		userService.batchUpdateUsersWhenException();	}	@Test	public void txUpdateUsersExceptionTest() {		userService.txUpdateUsersWhenException();	}}
================================================================================
@Transactionalpublic void blabla(){}
分类:
+加关注
0
0
上一篇:
下一篇:
posted @ 2017-02-28 12:00 阅读( 1876) 评论( 0)
 
(评论功能已被禁用)
最新IT新闻:
·
·
·
·
·
»
最新知识库文章:
·
·
·
·
·
»
历史上的今天:
2015-02-28

公告

本文转自博客园博客,原文链接:,如需转载请自行联系原作者

 

 

你可能感兴趣的文章
Windows 8上安装本地回环网卡
查看>>
一位多年老站长告白:如何用老域名让新站快速上首页
查看>>
iOS开发那些事-Passbook详解与开发案例(附视频)
查看>>
attrs.xml中declare-styleable 详解(用于自定义控件的属性)
查看>>
java.lang.UnsatisfiedLinkError:no dll in java.library.path终极解决之道
查看>>
严苛模式(StrictMode)
查看>>
错误“Unexpected namespace prefix "xmlns" found for tag LinearLayout”的解决方法(转)
查看>>
我的工具:文本转音频文件
查看>>
Jenkins(二)
查看>>
【许晓笛】从零开始运行EOS系统
查看>>
阿里云全面支持IPv6!一文揽尽4位大咖精彩演讲
查看>>
【跃迁之路】【460天】程序员高效学习方法论探索系列(实验阶段217-2018.05.11)...
查看>>
C++入门读物推荐
查看>>
TiDB 源码阅读系列文章(七)基于规则的优化
查看>>
面试中会遇到的正则题
查看>>
Spring之旅第八站:Spring MVC Spittr舞台的搭建、基本的控制器、请求的输入、表单验证、测试(重点)...
查看>>
数据结构与算法——常用排序算法及其Java实现
查看>>
你所不知的Webpack-多种配置方法
查看>>
React.js 集成 Kotlin Spring Boot 开发 Web 应用实例详解
查看>>
《图解HTTP》学习笔记(四):返回结果的HTTP状态码
查看>>