分布式事务系列---【配置 Seata-Client】

1.创建两个SpringBoot工程

2.添加 undo_log 表

在客户端处理的业务相关的每个数据库中都要添加 undo_log 表,用于保存需要回滚的 数据。建表语句脚本在 seata 源码(source)解压目录的 script/client/at/db 目录下的 mysql.sql 中。 3.添加依赖 在 两个pom 中添加 seata 的依赖。
<!-- seata 依赖 -->
<dependency>
 <groupId>com.alibaba.cloud</groupId>
 <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
</dependency>

4.修改 bootstrap.yml

在每个 seata client 工程的 bootstrap.yml 中指定要使用的事务服务组。 分布式事务系列---【配置 Seata-Client】

5. 添加@GlobalTransactional 注解

在需要开启分布式事务的方法上添加@GlobalTransactional 注解。 分布式事务系列---【配置 Seata-Client】

 

 

上一篇:Injection of autowired dependencies failed; nested exception is java.lang.IllegalArgumentException:


下一篇:三分钟让你快速了解Spring Cloud Config分布式配置