Spring Cloud 初步测试集成seata1.2.0版本

在4月份的时候,seata推出版本1.2.0,这也是第一次集成1.x以上的版本,针对于0.x的版本,在使用上还是有很多的不同,中间碰到很多问题。通过spring cloud 与seata集成(注册中心和配置中心采用nacos来实现)。seata的TC协调器服务的配置信息也是从nacos配置中获取,seata本身高可用也通过服务注册到nacos实现。
demo项目地址https://gitee.com/zhangsan00123/seata-demo

注: demo代码只是随便写了以下,代码有很多相关的问题。

spring cloud搭建相关版本说明

  • seata-server 1.2.0
  • spring boot版本 2.2.0.RELEASE
  • spring cloud版本 Hoxton.RC1
  • spring cloud alibaba版本 2.2.0.RELEASE
  • mybtis-plus版本 3.0.1
  • druid 版本 1.1.9

实现流程主要分为以下步骤:

  • 1.搭建nacos服务器
    1. 搭建seata的TC(协调器)服务seata-server
    1. 微服务集成seata的TM(事务管理器)以及RM(资源管理器)

1.Nacos搭建

官网文档非常详细,可以参考官网自行搭建,我自己的nacos是搭建在docker上,非常的简单。在官网中也说明了如何和spring cloud集成。
nacos官网:https://nacos.io/zh-cn/docs/quick-start.html

2.搭建seata-server

2.1 下载 seata-server-1.2.0.tar.gz

可以去官网下载seata-server-1.2.0.tar.gz或者通过以下我分享的百度网盘

链接:https://pan.baidu.com/s/1GcpIZqb-cg6eJ2nrVj5gyA  密码:k2ta

2.2 创建seata数据库

数据库名字为seata

-- -------------------------------- The script used when storeMode is 'db' --------------------------------
-- the table to store GlobalSession data
CREATE TABLE IF NOT EXISTS `global_table`
(
    `xid`                       VARCHAR(128) NOT NULL,
    `transaction_id`            BIGINT,
    `status`                    TINYINT      NOT NULL,
    `application_id`            VARCHAR(32),
    `transaction_service_group` VARCHAR(32),
    `transaction_name`          VARCHAR(128),
    `timeout`                   INT,
    `begin_time`                BIGINT,
    `application_data`          VARCHAR(2000),
    `gmt_create`                DATETIME,
    `gmt_modified`              DATETIME,
    PRIMARY KEY (`xid`),
    KEY `idx_gmt_modified_status` (`gmt_modified`, `status`),
    KEY `idx_transaction_id` (`transaction_id`)
) ENGINE = InnoDB
  DEFAULT CHARSET = utf8;

-- the table to store BranchSession data
CREATE TABLE IF NOT EXISTS `branch_table`
(
    `branch_id`         BIGINT       NOT NULL,
    `xid`               VARCHAR(128) NOT NULL,
    `transaction_id`    BIGINT,
    `resource_group_id` VARCHAR(32),
    `resource_id`       VARCHAR(256),
    `branch_type`       VARCHAR(8),
    `status`            TINYINT,
    `client_id`         VARCHAR(64),
    `application_data`  VARCHAR(2000),
    `gmt_create`        DATETIME(6),
    `gmt_modified`      DATETIME(6),
    PRIMARY KEY (`branch_id`),
    KEY `idx_xid` (`xid`)
) ENGINE = InnoDB
  DEFAULT CHARSET = utf8;

-- the table to store lock data
CREATE TABLE IF NOT EXISTS `lock_table`
(
    `row_key`        VARCHAR(128) NOT NULL,
    `xid`            VARCHAR(96),
    `transaction_id` BIGINT,
    `branch_id`      BIGINT       NOT NULL,
    `resource_id`    VARCHAR(256),
    `table_name`     VARCHAR(32),
    `pk`             VARCHAR(36),
    `gmt_create`     DATETIME,
    `gmt_modified`   DATETIME,
    PRIMARY KEY (`row_key`),
    KEY `idx_branch_id` (`branch_id`)
) ENGINE = InnoDB
  DEFAULT CHARSET = utf8;

2.3 将配置信息导入nacos

seata的TC分布式事务协调器是一服务,实现seata的高可用,可以将seata注册到注册中心,另一方面,seata也可以采用nacos作为自己的配置中心,当前nacos版本为1.2.1。 seata的配置信息可以从项目代码中获取到,从github拉去到代码,github地址https://github.com/seata/seata/tree/develop/script/client

  • 从github拉取代码并修改 修改script/config.txt文件
#以下两行配置的是事务组的名称,一般基于服务来配置即可
service.vgroupMapping.seata_rest_user_tx_group=default
service.vgroupMapping.seata_rest_integral_tx_group=default

store.mode=db
store.db.datasource=druid
store.db.dbType=mysql

#以下配置seata数据存储的数据库地址,如果采用mysql8,那么需要修改driverClassName
store.db.driverClassName=com.mysql.jdbc.Driver
store.db.url=jdbc:mysql://127.0.0.1:3306/seata?useUnicode=true
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.queryLimit=100
store.db.lockTable=lock_table
store.db.maxWait=5000
  • 运行nacos-config.sh 将配置信息导入nacos 运行script/config-center/nacos/nacos-config.sh 注: 启动命令格式 ./nacos-config nacos_ip(此处不要加端口,脚本默认采用了8848的端口地址,如果有需要,需要修改脚本)
./nacos-config 127.0.0.1

2.4 更改server中的registry.conf

registry {
  # file 、nacos 、eureka、redis、zk、consul、etcd3、sofa
  type = "nacos"
  nacos {
    application = "seata-server"
    serverAddr = "localhost"
    namespace = ""
    cluster = "default"
    username = "nacos"
    password = "nacos"
  }
}

config {
  # file、nacos 、apollo、zk、consul、etcd3
  type = "nacos"

  nacos {
    serverAddr = "localhost"
    namespace = ""
    group = "SEATA_GROUP"
    username = "nacos"
    password = "nacos"
  }
}

2.5 启动服务

到seata下的bin目录下执

sh seata-server.sh -p 8091 -h 127.0.0.1 -m file

3.项目引入seata步骤

3.1 maven引入seata的依赖

  • 父POM

2.2.0.RELEASE



    com.alibaba.cloud
    spring-cloud-alibaba-dependencies
    ${spring.cloud.alibaba.version}
    pom
    import

  • 微服务pom

    com.alibaba.cloud
    spring-cloud-alibaba-seata
    
        
            io.seata
            seata-spring-boot-starter
        
    


    io.seata
    seata-spring-boot-starter
    1.2.0

3.2 数据源代理配置

由于seata需要拿到数据库连接的控制权,所以要将数据源代理进行配置

@Bean
@ConfigurationProperties(prefix = "spring.datasource")
public DruidDataSource druidDataSource(){
    return new DruidDataSource();
}

@Primary
@Bean
public DataSource dataSource(DruidDataSource druidDataSource){
    return new DataSourceProxy(druidDataSource);
}

3.3 在微服务的数据库创建一张表undo_log

-- 注意此处0.3.0+ 增加唯一索引 ux_undo_log
CREATE TABLE `undo_log` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `branch_id` bigint(20) NOT NULL,
  `xid` varchar(100) NOT NULL,
  `context` varchar(128) NOT NULL,
  `rollback_info` longblob NOT NULL,
  `log_status` int(11) NOT NULL,
  `log_created` datetime NOT NULL,
  `log_modified` datetime NOT NULL,
  `ext` varchar(100) DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

3.4 启动类注解

@SpringBootApplication(exclude = DataSourceAutoConfiguration.class)

需要添加当前配置,否则会出现循环依赖的问题而导致启动失败

3.5 seata配置

在新版本下,不再需要将file.conf以及register.conf文件引入到项目之中,可以通过springboot的配置文件application.yml进行配置,当然,我自己的配置放在nacos当中

seata:
  enabled: true
  application-id: seata-rest-user
  tx-service-group: seata_rest_user_tx_group
  enable-auto-data-source-proxy: true
  config:
    type: nacos
    nacos:
      namespace:
      serverAddr: 127.0.0.1:8848
      group: SEATA_GROUP
      userName: "nacos"
      password: "nacos"
  registry:
    type: nacos
    nacos:
      application: seata-server
      server-addr: 127.0.0.1:8848
      namespace:
      userName: "nacos"
      password: "nacos"

3.6 使用seata

  • 全局事务开始使用 @GlobalTransactional(在开启全局事务的service上需要添加此注解)
  • 每个本地事务方案仍然使用 @Transactional
  • 每个数据库都需要有undo_log表,此表是seata保证本地事务一致性的关键

你可能感兴趣的:(Spring Cloud 初步测试集成seata1.2.0版本)