在上一节中,我们学习了Seata
的集群部署,在这篇文章中,我们使用SpringBoot
整合Seata
实现分布式事务功能,此处使用的是Seata
的AT
模式。
我们存在2个服务 账户服务 account-service
和 订单服务 order-service
,在订单服务中调用 账户服务。
订单服务中调用账户服务是通过
RestTemplate
来实现的。
测试场景:
1、账户服务正常,订单服务正常,结果:
账户服务正常扣款,产生订单。
2、账户服务正常,订单服务正常,在整个分布式事务中发生了异常,结果:
账户服务没有扣款,没有产生订单。
SpringBoot、Seata、Mybatis、nacos、druid
SpringBoot、Seata、Mybatis、nacos、Hikari
其中 SpringBoot 整合 Seata 是通过 seata-spring-boot-starter
这个来实现的,不使用 seata-all
来实现。
账户服务,提供一个简单的扣除账户余额的功能,比较简单。
注意项:
1、开启自动数据源代理。
2、引入druid
,不需要自动配置数据源。
3、注意事务分组
此处只引入几个 核心的 包,其余的包没有列在下方,比如mybatis
等,注意和seata整合使用的是seata-spring-boot-starter
<dependency>
<groupId>io.seatagroupId>
<artifactId>seata-spring-boot-starterartifactId>
<version>1.4.2version>
dependency>
<dependency>
<groupId>com.alibabagroupId>
<artifactId>druid-spring-boot-starterartifactId>
<version>1.2.4version>
dependency>
<dependency>
<groupId>com.alibaba.nacosgroupId>
<artifactId>nacos-clientartifactId>
<version>1.3.2version>
dependency>
create database seata_account;
use seata_account;
create table account(
id int unsigned auto_increment primary key comment '主键',
name varchar(20) comment '用户名',
balance bigint comment '账户余额,单位分'
) engine=InnoDB comment '账户表';
insert into account(id,name,balance) values (1,'张三',100000);
CREATE TABLE IF NOT EXISTS `undo_log`
(
`branch_id` BIGINT NOT NULL COMMENT 'branch transaction id',
`xid` VARCHAR(128) NOT NULL COMMENT 'global transaction id',
`context` VARCHAR(128) NOT NULL COMMENT 'undo_log context,such as serialization',
`rollback_info` LONGBLOB NOT NULL COMMENT 'rollback info',
`log_status` INT(11) NOT NULL COMMENT '0:normal status,1:defense status',
`log_created` DATETIME(6) NOT NULL COMMENT 'create datetime',
`log_modified` DATETIME(6) NOT NULL COMMENT 'modify datetime',
UNIQUE KEY `ux_undo_log` (`xid`, `branch_id`)
) ENGINE = InnoDB COMMENT ='AT transaction mode undo table';
每个业务库必须存在一张 undo_log
表
提供一个接口,实现产生订单,扣除账户余额。
注意事项:
1、订单服务 关闭默认的数据源代理,自己配置数据源代理。
2、使用 Hikari
数据源来实现,因为使用的是 AT
模式,所以需要使用 DataSourceProxy
来代理数据源。
3、订单服务调用账户服务是采用的 RestTemplate
,因此需要手动配置RestTemplate的拦截器,实现xid
的传输。
4、在seata1.4.2
中存在一个bug,如果业务表中数据类型是datetime
类型,可能undolog
无法序列化成功,可以采用timestamp
或别的方式来处理。
5、业务库中需要存在 undo_log
表。
此处不引入 druid
,注意和seata整合使用的是seata-spring-boot-starter
<dependency>
<groupId>io.seatagroupId>
<artifactId>seata-spring-boot-starterartifactId>
<version>1.4.2version>
dependency>
<dependency>
<groupId>com.alibaba.nacosgroupId>
<artifactId>nacos-clientartifactId>
<version>1.3.2version>
dependency>
package com.huan.seata.config;
import com.zaxxer.hikari.HikariDataSource;
import io.seata.rm.datasource.DataSourceProxy;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.autoconfigure.jdbc.DataSourceProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import javax.sql.DataSource;
/**
* @author huan.fu 2021/9/24 - 上午10:34
*/
@Configuration
public class DataSourceConfig {
@Autowired
private DataSourceProperties dataSourceProperties;
@Bean
public DataSource dataSourceProxy() {
HikariDataSource hikariDataSource = new HikariDataSource();
hikariDataSource.setJdbcUrl(dataSourceProperties.getUrl());
hikariDataSource.setUsername(dataSourceProperties.getUsername());
hikariDataSource.setPassword(dataSourceProperties.getPassword());
hikariDataSource.setDriverClassName(dataSourceProperties.getDriverClassName());
return new DataSourceProxy(hikariDataSource);
}
}
在 AT
模式种,数据源代理一定要是 DataSourceProxy
这个。
@Service
@RequiredArgsConstructor
@Slf4j
public class BusinessServiceImpl implements BusinessService {
private final OrderService orderService;
private final RestTemplate restTemplate;
@Override
@GlobalTransactional(rollbackFor = Exception.class)
public void createAccountOrder(Integer accountId, Long amount, boolean hasException) {
System.out.println("createAccountOrder:" + RootContext.getXID());
// 1、远程扣减账户余额
remoteDebit(accountId, amount);
// 2、下订单
orderService.createOrder(accountId, amount);
if (hasException) {
throw new RuntimeException("发生了异常,分布式事物需要会滚");
}
}
private void remoteDebit(Integer accountId, Long amount) {
String url = "http://localhost:50001/account/debit?id=" + accountId + "&amount=" + amount;
String result = restTemplate.getForObject(url, String.class);
log.info("远程扣减库存结果:[{}]", result);
}
}
此处以订单服务来演示,如何和配置中心对应上的。
每个服务的事务分组可能不一样,但是需要和配置中心对应上。
比如:
order-service 中的配置分组为:seata.tx-service-group=tx_order_service_group
配置中心必须存在 service.vgroupMapping.tx_order_service_group=default 配置项,default是集群,是服务端配置文件中指定的
访问:http://localhost:50002/createOrder?accountId=1&amount=10&hasException=false
正常创建订单,和扣除余额。
访问: http://localhost:50002/createOrder?accountId=1&amount=10&hasException=true
不产生订单,不扣除余额。
A: 异常:io.seata.common.exception.FrameworkException: can not register RM,err:can not connect to services-server.
@Transactional 可与 DataSourceTransactionManager 和 JTATransactionManager 连用分别表示本地事务和XA分布式事务,大家常用的是与本地事务结合。当与本地事务结合时,@Transactional和@GlobalTransaction连用,@Transactional 只能位于标注在@GlobalTransaction的同一方法层次或者位于@GlobalTransaction 标注方法的内层。这里分布式事务的概念要大于本地事务,若将 @Transactional 标注在外层会导致分布式事务空提交,当@Transactional 对应的 connection 提交时会报全局事务正在提交或者全局事务的xid不存在。
由于业务提交,seata记录当前镜像后,数据库又进行了一次时间戳的更新,导致镜像校验不通过。
**解决方案1: **关闭数据库的时间戳自动更新。数据的时间戳更新,如修改、创建时间由代码层面去维护,比如MybatisPlus就能做自动填充。
解决方案2: update语句别把没更新的字段也放入更新语句。
Seata 注册中心不能注册 0.0.0.0 或 127.0.0.1 的地址,当自动注册为上述地址时可以通过启动参数 -h 或容器环境变量SEATA_IP来指定。当和业务服务处于不同的网络时注册地址可以指定为 NAT_IP或公网IP,但需要保证注册中心的健康检查探活是通畅的。
以上的几个问题,来自seata官网 :
http://seata.io/zh-cn/docs/overview/faq.html
代码地址:https://gitee.com/huan1993/spring-cloud-parent/tree/master/seata/seata-springboot-mybatis