当前位置:网站首页>TransactionTemplate 事务编程式写法
TransactionTemplate 事务编程式写法
2022-07-31 05:15:00 【浮生若梦l】
建议使用声明式事务@Transactional(rollbackFor = Exception.class)粒度不够,拆分方法
import org.springframework.transaction.support.TransactionTemplate;
@Autowired
private TransactionTemplate trans;
/**
* 编程式事务
*/
public void transfer() {
//无返回值
trans.executeWithoutResult((status) ->{
boolean save = this.save(t);
if(!save) {
status.setRollbackOnly();
}
});
//有返回值
trans.execute((status) ->{
boolean save = this.save(t);
if(!save) {
status.setRollbackOnly();
}
return new Object();
});
}
边栏推荐
猜你喜欢
GUCCI, LV and other luxury giant universe how to layout yuan, other brands should keep up with?
计网 Packet Tracer仿真 | 简单易懂集线器和交换机对比(理论+仿真)
What is GameFi?
为什么bash中的read要配合while才能读取/dev/stdin的内容
What is an EVM Compatible Chain?
【windows】--- SQL Server 2008 超详细安装教程
UiBot has an open Microsoft Edge browser and cannot perform the installation
著名网站msdn.itellyou.cn原理分析
Android软件安全与逆向分析阅读笔记
小米手机短信定位服务激活失败
随机推荐
[Cloud Native] What should I do if SQL (and stored procedures) run too slowly?
通信原理——纠错编码 | 汉明码(海明码)手算详解
C语言 | 获取字符串里逗号间隔的内容
Hyper-V新建虚拟机注意事项
MySQL压缩包方式安装,傻瓜式教学
【云原生】开源数据分析 SPL 轻松应对 T+0
cocos2d-x-3.2 Physics
2021美赛C题M奖思路
MySQL面试题大全(陆续更新)
数据库 | SQL增删改查基础语法
Linux修改MySQL数据库密码
SSH自动重连脚本
360 加固 file path not exists.
小米手机短信定位服务激活失败
Regular Expression Basics
【云原生】原来2020.0.X版本开始的OpenFeign底层不再使用Ribbon了
【云原生】微服务Nacos的简单介绍与使用
sql 外键约束【表关系绑定】
configure:error no SDL library found
Getting to know regular expressions