😊 @ 作者: 一恍过去
🎊 @ 社区: Java技术栈交流
🎉 @ 主题: Docker部署seata-2.x整合SpringCloud使用(Nacos实现配置与注册中心)
⏱️ @ 创作时间: 2024年03月25日

1、拉取镜像

docker pull seataio/seata-server:2.0.0 

2、拷贝挂载配置

我们先直接运行seata容器,然后将配置文件拷贝到宿主机器,用于后面的挂载操作。

直接运行镜像

docker run -d --name seata-server -p 8091:8091 seataio/seata-server:2.0.0

拷贝镜像内容

docker cp seata-server:/seata-server/resources /root/docker/cloud/seata

Docker部署seata-2.x整合SpringCloud使用(Nacos实现配置与注册中心)-LMLPHP

停止并且删除镜像

完成配置文件拷贝后,停止并且删除镜像

# 停止
docker stop seata-server
# 删除
docker rm seata-server

3、配置数据源

Seata-Server端存储模式(store.mode)现有file、db、redis三种,file模式无需改动,直接启动即可。

如果是seata分布式集群时推荐使用Redis或者DB模式,在此配置Mysql进行储存,步骤如下:

1、建立数据库:seata

2、建表,参考语句:https://github.com/seata/seata/blob/develop/script/server/db/mysql.sql
Docker部署seata-2.x整合SpringCloud使用(Nacos实现配置与注册中心)-LMLPHP

4、修改配置文件

vim /root/docker/cloud/seata/application.yml

内容如下(只涉及改动部分的配置):

seata:
  config:
    type: nacos
    nacos:
    # 配置nacos地址等信息
      server-addr: 127.0.0.1:8848
      namespace: 6449e725-b486-40d2-9d52-3d3393f5f6c7
      group: SEATA_GROUP
      username: nacos
      password: nacos
      data-id: seataServer.properties
  registry:
    type: nacos
    nacos:
    # seata tc 服务注册到 nacos的服务名称,可以自定义
      application: seata-server
      server-addr: 127.0.0.1:8848
      namespace: 6449e725-b486-40d2-9d52-3d3393f5f6c7
      group: SEATA_GROUP
      username: nacos
      password: nacos
  store:
   	mode: db

5、配置Nacos

从v2.0.0版本开始,已支持从一个Nacos dataId中获取所有配置信息,你只需要额外添加一个dataId配置项。

在nacos新建配置,此处dataId为seataServer.properties。注意建立的nameSpacegroup要与registry.conf文件中的一致。

配置内容,参考:https://github.com/seata/seata/blob/develop/script/config-center/config.txt中的内容,并按实际需要进行修改,主要修改内容如下():

# 配置事务组
# default_tx_group 事务分组名称可以自定义为项目名称,比如:seata_demo
# default表示registry.conf中配置的cluster名称
service.vgroupMapping.default_tx_group=default

#事务会话信息存储方式
store.mode=db
#事务锁信息存储方式
store.lock.mode=db
#事务回话信息存储方式
store.session.mode=db
#存储方式为db
store.db.dbType=mysql
store.db.datasource=druid
store.db.driverClassName=com.mysql.cj.jdbc.Driver
store.db.url=jdbc:mysql://111.229.160.175:3316/seata?useUnicode=true&serverTimezone=Asia/Shanghai
store.db.user=root
store.db.password=123456
store.db.minConn=5
store.db.maxConn=30
store.db.globalTable=global_table
store.db.branchTable=branch_table
store.db.distributedLockTable=distributed_lock

效果:
Docker部署seata-2.x整合SpringCloud使用(Nacos实现配置与注册中心)-LMLPHP

5、启动容器

docker run \
--name seata-server -d \
--restart=always \
-p 8091:8091 \
-e SEATA_PORT=8091 \
-e SEATA_IP=1xx.14.1xx.1x \
-e JVM_XMX=256m \
-e JVM_XMS=256m \
-e JVM_XSS=256m \
-v /root/docker/cloud/seata:/seata-server/resources \
seataio/seata-server:2.0.0

seata成功启动后,nacos可以看到信息:
Docker部署seata-2.x整合SpringCloud使用(Nacos实现配置与注册中心)-LMLPHP

6、整合使用

6.1 pom

<dependency>
    <groupId>com.alibaba.cloud</groupId>
    <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
</dependency>

6.2 undo_log建表

在微服务客户端连接的数据库中建立undo_log表,语句如下:

CREATE TABLE IF NOT EXISTS `undo_log`
(
    `branch_id`     BIGINT(20)   NOT NULL COMMENT 'branch transaction id',
    `xid`           VARCHAR(100) 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
  AUTO_INCREMENT = 1
  DEFAULT CHARSET = utf8 COMMENT ='AT transaction mode undo table';

6.3 yaml

seata:
  enabled: true
  application-id: ${spring.application.name}
  # 事务组的名称,对应service.vgroupMapping.default_tx_group=xxx中配置的default_tx_group
  tx-service-group: default_tx_group
  # 配置事务组与集群的对应关系
  service:
    vgroup-mapping:
      # default_tx_group为事务组的名称,default为集群名称(与registry.conf中的一致)
      default_tx_group: default
    disable-global-transaction: false
  registry:
    type: nacos
    nacos:
      application: seata-server
      server-addr: 112.15.114.18:8848
      group: SEATA_GROUP
      namespace: 64ed9ca7-d705-4655-b4e4-f824e420a12a
      username: nacos
      password: nacos
      # registry.conf中,配置cluster名称
      cluster: default

6.4 测试使用

全局事务注解:

@GlobalTransactional

在事务发起的微服务方法上加上注解@GlobalTransactional表示全局事务中的一个TM。

比如:

@RestController
@RequestMapping("test")
public class TestController {

    @GetMapping("/insert")
    @GlobalTransactional
    public void selectUserWageByUserId() {
		......
		......
		// 如果RootContext.getXID()不为空,则表示seata生效
		System.out.println("RootContext.getXID():" + RootContext.getXID());
    }
}

效果:
可以看到在undo_log以及seata服务global_tablebranch_tablelock_table中存在seata执行分布式事务时的数据。

7、数据源支持及事务级别

隔离级别:
Seata的隔离级别默认为读未提交

参考:https://seata.io/zh-cn/docs/user/datasource.html

Docker部署seata-2.x整合SpringCloud使用(Nacos实现配置与注册中心)-LMLPHP

03-26 19:51