Spring中的@Transactional注解
来源:SegmentFault
时间:2023-01-24 14:30:07 448浏览 收藏
小伙伴们对数据库编程感兴趣吗?是否正在学习相关知识点?如果是,那么本文《Spring中的@Transactional注解》,就很适合你,本篇文章讲解的知识点主要包括MySQL、Java、事务。在之后的文章中也会多多分享相关知识点,希望对大家的知识积累有所帮助!
什么是事务
数据库的事务是一种机制、一个操作序列,包含了数据库操作命令。事务把所有的命令做为一个整体一起向系统提交或撤销操作请求,即这一组命令要么成功,要么失败。
事务的4个特性(ACID):
- 原子性
事务是一个完整的操作。事务内的各元素是不可分割的。事务中的元素必须作为一个整体提交或回滚。如果事务中的任何元素失败,整个事务将失败。
- 一致性
在事务开始前,数据必须处于一致状态;在事务结束后,数据的状态也必须保持一致。通过事务对数据所做的修改不能损坏数据。
- 隔离性
事务的执行不受其他事务的干扰,事务执行的中间结果对其他事务必须是透明的。
- 持久性
对于提交的事务,系统必须保证事务对数据库的改变不被丢失,即使数据库发生故障。
如何实现事务
在目前的业务开发过程中,都是以Spring框架为主。Spring支持两种方式的事务管理
@Autowired private PlatformTransactionManager transactionManager; @Override public MapsaveResource(MultipartFile file) { TransactionStatus status = transactionManager.getTransaction(new DefaultTransactionDefinition()); try { // 相关业务 // 手动提交 transactionManager.commit(status); } catch (Exception e) { log.error("Exception:{}", ExceptionUtil.stacktraceToString(e)); // 发生异常时进行回滚 transactionManager.rollback(status); } }
声明式事务
所谓声明式事务,就是使用
@Transactional @Override public MapsaveResource(MultipartFile file) { // 相关业务 }
protected Object invokeWithinTransaction(Method method, @Nullable Class> targetClass,final InvocationCallback invocation) throws Throwable {
...
PlatformTransactionManager ptm = asPlatformTransactionManager(tm);
// 切点
final String joinpointIdentification = methodIdentification(method, targetClass, txAttr);
if (txAttr == null || !(ptm instanceof CallbackPreferringPlatformTransactionManager)) {
// Standard transaction demarcation with getTransaction and commit/rollback calls.
// 创建事务
TransactionInfo txInfo = createTransactionIfNecessary(ptm, txAttr, joinpointIdentification);
// 环绕切点执行业务逻辑
Object retVal;
try {
// This is an around advice: Invoke the next interceptor in the chain.
// This will normally result in a target object being invoked.
retVal = invocation.proceedWithInvocation();
}
catch (Throwable ex) {
// target invocation exception
// 执行过程中发生异常,执行回滚
completeTransactionAfterThrowing(txInfo, ex);
throw ex;
}
finally {
cleanupTransactionInfo(txInfo);
}
if (vavrPresent && VavrDelegate.isVavrTry(retVal)) {
// Set rollback-only in case of Vavr failure matching our rollback rules...
TransactionStatus status = txInfo.getTransactionStatus();
if (status != null && txAttr != null) {
retVal = VavrDelegate.evaluateTryFailure(retVal, txAttr, status);
}
}
// 正常执行,提交事务
commitTransactionAfterReturning(txInfo);
return retVal;
}
...
}
protected void completeTransactionAfterThrowing(@Nullable TransactionInfo txInfo, Throwable ex) { // 判断事务状态不为空的情况下 if (txInfo != null && txInfo.getTransactionStatus() != null) { // 输出debug日志 if (logger.isTraceEnabled()) { logger.trace("Completing transaction for [" + txInfo.getJoinpointIdentification() + "] after exception: " + ex); } // 在指定异常下回滚 if (txInfo.transactionAttribute != null && txInfo.transactionAttribute.rollbackOn(ex)) { try { // 开始回滚 txInfo.getTransactionManager().rollback(txInfo.getTransactionStatus()); } catch (TransactionSystemException ex2) { logger.error("Application exception overridden by rollback exception", ex); ex2.initApplicationException(ex); throw ex2; } catch (RuntimeException | Error ex2) { logger.error("Application exception overridden by rollback exception", ex); throw ex2; } } // 不是指定的异常,任然提交 else { // We don't roll back on this exception. // Will still roll back if TransactionStatus.isRollbackOnly() is true. try { txInfo.getTransactionManager().commit(txInfo.getTransactionStatus()); } catch (TransactionSystemException ex2) { logger.error("Application exception overridden by commit exception", ex); ex2.initApplicationException(ex); throw ex2; } catch (RuntimeException | Error ex2) { logger.error("Application exception overridden by commit exception", ex); throw ex2; } } } }
// 结束执行,且没有抛出异常,就执行提交 protected void commitTransactionAfterReturning(@Nullable TransactionInfo txInfo) { if (txInfo != null && txInfo.getTransactionStatus() != null) { if (logger.isTraceEnabled()) { logger.trace("Completing transaction for [" + txInfo.getJoinpointIdentification() + "]"); } txInfo.getTransactionManager().commit(txInfo.getTransactionStatus()); } }
常用属性配置
propagation
配置事务的传播特性,默认为:required
传播性 | 描述 |
---|---|
required | 在有事务的状态下执行,如果没有就创建新的事务 |
required_news | 创建新的事务,如果当前有事务就将当前事务挂起 |
supports | 如果有事务就在当前事务下运行,没有事务就在无事务状态下运行 |
not_supported | 在无事务状态下运行,如果有事务,将当前事务挂起 |
mandatory | 必须存在事务,若无事务,抛出异常Resource resource = new Resource(); resource.setCreateUser("admin"); try { resourceMapper.insertUseGeneratedKeys(resource); } catch (Exception e) { // 在日志中输出堆栈信息,并抛出异常 log.error("Exception:{}", ExceptionUtil.stacktraceToString(e)); throw new RuntimeException("系统错误"); }
在MySQL中支持事务的引擎是 innodb 参考文章
以上就是《Spring中的@Transactional注解》的详细内容,更多关于mysql的资料请关注golang学习网公众号! |
声明:本文转载于:SegmentFault 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
499 收藏
-
244 收藏
-
235 收藏
-
157 收藏
-
101 收藏
最新阅读
更多>
-
475 收藏
-
266 收藏
-
273 收藏
-
283 收藏
-
210 收藏
-
371 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习