当前位置:网站首页>Manually rollback abnormal data
Manually rollback abnormal data
2022-06-25 11:38:00 【wo595】
@Autowired
private PlatformTransactionManager platformTransactionManager;
public void test(){
List<SupplierPurchaseOrderDetailsRecord> recordList = new ArrayList<SupplierPurchaseOrderDetailsRecord>(){
{
add(new SupplierPurchaseOrderDetailsRecord(11111));
add(new SupplierPurchaseOrderDetailsRecord(22222));
add(new SupplierPurchaseOrderDetailsRecord(33333));
add(new SupplierPurchaseOrderDetailsRecord(44444));
}
} ;
for (int i = 0; i < recordList.size(); i++) {
// Manually open transaction
DefaultTransactionDefinition definition = new DefaultTransactionDefinition();
definition.setPropagationBehavior(TransactionDefinition.PROPAGATION_REQUIRED);
TransactionStatus status = platformTransactionManager.getTransaction(definition);
try {
mapper.insertSelective(recordList.get(i));
if (i==3){
throw new RuntimeException();
}
// Manual submission
platformTransactionManager.commit(status);
} catch (RuntimeException e) {
// Manual rollback exception
platformTransactionManager.rollback(status); }
}
}

边栏推荐
- Presto Web UI introduction
- Jincang KFS data centralized scenario (many to one) deployment
- 金太阳教育美股上市:市值3.6亿美元 成小盘中概股
- 2022 PMP project management examination agile knowledge points (2)
- GaussDB 集群维护案例集-sql执行慢
- Database Series: MySQL index optimization summary (comprehensive version)
- Bayes
- 寿命分布 4种
- Use of Presto visualization client-yanagishima20.0
- Writing wechat applet with uni app
猜你喜欢

Getting started with Apache Shenyu

Ladder Side-Tuning:预训练模型的“过墙梯”

Golden sun education listed in the U.S.: a small cap medium cap stock with a market value of USD 360million

Shichuang Energy sprint Technology Innovation Board: le chiffre d'affaires annuel prévu de 1,1 milliard de RMB est de 0,7 milliard de RMB, en baisse de 36%

龙书虎书鲸书啃不动?试试豆瓣评分9.5的猴书

Ladder side tuning: the "wall ladder" of the pre training model

Nacos installation and use

Spark history server and event log details

SQL injection vulnerability (bypass)

Geographic location system based on openstreetmap+postgis paper documents + reference papers + project source code and database files
随机推荐
翌圣生物冲刺科创板:25%收入来自新冠产品销售 拟募资11亿
为什么要分布式 id ?分布式 id 生成方案有哪些?
查询法,中断法实现USART通信
Geographic location system based on openstreetmap+postgis paper documents + reference papers + project source code and database files
Getting started with Apache Shenyu
推荐一款M1电脑可用的虚拟机软件
子类A继承父类B, A a = new A(); 则父类B构造函数、父类B静态代码块、父类B非静态代码块、子类A构造函数、子类A静态代码块、子类A非静态代码块 执行的先后顺序是?
龙书虎书鲸书啃不动?试试豆瓣评分9.5的猴书
Builder pattern
MySQL synchronous data configuration and shell script implementation
How to realize the rich text editor function of mobile terminal
寿命分布 4种
Comparison between relu and SIGMOD
Shichuang Energy sprint Technology Innovation Board: le chiffre d'affaires annuel prévu de 1,1 milliard de RMB est de 0,7 milliard de RMB, en baisse de 36%
时创能源冲刺科创板:拟募资11亿 年营收7亿净利反降36%
Spannable 和 Editable、SpannableString 和 SpannableString
Presto Web UI introduction
ARM64特有一些的汇编指令
What are the ways to simulate and burn programs? (including common tools and usage)
金仓KFS数据级联场景部署