- 1.首先需要在代码中注入事务管理器
@Autowired
private PlatformTransactionManager transactionManager; - 2.代码中使用如下
public void dealResult(Map<String,List<WKOrder>> resultMap){TransactionTemplate template = new TransactionTemplate(transactionManager);template.execute(new TransactionCallbackWithoutResult(){@Overrideprotected void doInTransactionWithoutResult(TransactionStatus arg0) {//TODO:实现你的业务逻辑}});}
相关文章
- 03-06spring – @ControllerAdvice单元测试控制器中的Autowired MessageSource null
- 03-06spring5框架中的事务管理(全)
- 03-06spring 事务处理中,同一个类中:A方法(无事务)调B方法(有事务),事务不生效问题
- 03-067 Spring控制事务的开发
- 03-06Spring中事务的使用和配置
- 03-06spring – Tomcat中的Webapp引导代码
- 03-06ShardingSphere5.x在Spring Cloud的微服务中seata的分布式事务的解决方案(十六)【万字博文】
- 03-06Spring中的事务 ~
- 03-06spring事务在实际项目开发中的使用
- 03-06spring事务-代码中控制