分散式事務框架 Seata 入門案例

来源:https://www.cnblogs.com/cjsblog/archive/2022/11/02/16848782.html
-Advertisement-
Play Games

1. Seata Server 部署 Seata分TC、TM和RM三個角色,TC(Server端)為單獨服務端部署,TM和RM(Client端)由業務系統集成。 首先,下載最新的安裝包 也可以下載源碼,然後本地編譯。最新的版本是1.5.2 下載後的啟動包(或者源碼)中有個scripts目錄,裡面有各 ...


1.  Seata Server 部署

Seata分TC、TM和RM三個角色,TC(Server端)為單獨服務端部署,TM和RM(Client端)由業務系統集成。

首先,下載最新的安裝包

也可以下載源碼,然後本地編譯。最新的版本是1.5.2

下載後的啟動包(或者源碼)中有個scripts目錄,裡面有各種我們所需的腳本

Server端存儲模式(store.mode)現有file、db、redis三種:

  • file模式為單機模式,全局事務會話信息記憶體中讀寫並持久化本地文件root.data,性能較高;(不推薦)
  • db模式為高可用模式,全局事務會話信息通過db共用,相應性能差些;
  • redis模式Seata-Server 1.3及以上版本支持,性能較高,存在事務信息丟失風險,請提前配置合適當前場景的redis持久化配置;

修改配置文件

  • 啟動包:seata-->conf-->application.yml
  • 源碼包:根目錄-->seata-server-->resources-->application.yml

主要修改的點是:

  • 修改store.mode="db或者redis"
  • 修改seata.config、seata.registry
  • 修改資料庫連接|redis屬性配置

在資源目錄還有一個application.example.yml文件,application.example.yml中附帶額外配置,可以將其db|redis相關配置複製至application.yml,進行修改store.db或store.redis相關屬性。

如果不使用外部配置中心,直接使用本地文件配置的話,那麼最簡單的配置可能是這樣的:

server:
  port: 7091

spring:
  application:
    name: seata-server

logging:
  config: classpath:logback-spring.xml
  file:
    path: ${user.home}/logs/seata
  extend:
    logstash-appender:
      destination: 127.0.0.1:4560
    kafka-appender:
      bootstrap-servers: 127.0.0.1:9092
      topic: logback_to_logstash

console:
  user:
    username: seata
    password: seata

seata:
  config:
    type: file
  registry:
    type: nacos
    nacos:
      application: seata-server
      server-addr: 127.0.0.1:8848
      group: SEATA_GROUP
      namespace:
      cluster: default
  store:
    mode: db
    db:
      datasource: druid
      db-type: mysql
      driver-class-name: com.mysql.cj.jdbc.Driver
      url: jdbc:mysql://127.0.0.1:3306/seata?rewriteBatchedStatements=true&useUnicode=true&serverTimezone=Asia/Shanghai
      user: root
      password: 123456
      min-conn: 5
      max-conn: 100
      global-table: global_table
      branch-table: branch_table
      lock-table: lock_table
      distributed-lock-table: distributed_lock
      query-limit: 100
      max-wait: 5000
  security:
    secretKey: SeataSecretKey0c382ef121d778043159209298fd40bf3850a017
    tokenValidityInMilliseconds: 1800000
    ignore:
      urls: /,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-fe/public/**,/api/v1/auth/login

更多配置請參見 https://seata.io/zh-cn/docs/user/configurations.html

這裡面哪些是Server端需要配置的,哪些是Client端需要配置的,以及每個參數的含義都解釋得非常詳細,強烈建議看一下,這裡就不在贅述。

此處註冊中心用nacos

https://nacos.io/zh-cn/index.html

建表(預設資料庫是seata)

USE `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_status_gmt_modified` (`status` , `gmt_modified`),
    KEY `idx_transaction_id` (`transaction_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COMMENT = '全局事務表';

-- 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 = utf8mb4 COMMENT = '分支事務表';

-- the table to store lock data
CREATE TABLE IF NOT EXISTS `lock_table`
(
    `row_key`        VARCHAR(128) NOT NULL,
    `xid`            VARCHAR(128),
    `transaction_id` BIGINT,
    `branch_id`      BIGINT       NOT NULL,
    `resource_id`    VARCHAR(256),
    `table_name`     VARCHAR(32),
    `pk`             VARCHAR(36),
    `status`         TINYINT      NOT NULL DEFAULT '0' COMMENT '0:locked ,1:rollbacking',
    `gmt_create`     DATETIME,
    `gmt_modified`   DATETIME,
    PRIMARY KEY (`row_key`),
    KEY `idx_status` (`status`),
    KEY `idx_branch_id` (`branch_id`),
    KEY `idx_xid_and_branch_id` (`xid` , `branch_id`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4 COMMENT = '全局鎖表';

CREATE TABLE IF NOT EXISTS `distributed_lock`
(
    `lock_key`       CHAR(20) NOT NULL,
    `lock_value`     VARCHAR(20) NOT NULL,
    `expire`         BIGINT,
    primary key (`lock_key`)
) ENGINE = InnoDB DEFAULT CHARSET = utf8mb4;

INSERT INTO `distributed_lock` (lock_key, lock_value, expire) VALUES ('AsyncCommitting', ' ', 0);
INSERT INTO `distributed_lock` (lock_key, lock_value, expire) VALUES ('RetryCommitting', ' ', 0);
INSERT INTO `distributed_lock` (lock_key, lock_value, expire) VALUES ('RetryRollbacking', ' ', 0);
INSERT INTO `distributed_lock` (lock_key, lock_value, expire) VALUES ('TxTimeoutCheck', ' ', 0);

如果採用AT模式,那麼每個業務資料庫還需建一個undo_log表

-- for AT mode you must to init this sql for you business database. the seata server not need it.
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 AUTO_INCREMENT = 1 DEFAULT CHARSET = utf8mb4 COMMENT ='AT transaction mode undo table';

啟動

  • 源碼啟動: 執行ServerApplication.java的main方法
  • 命令啟動: seata-server.sh -h 127.0.0.1 -p 8091 -m db
    • -h: 註冊到註冊中心的ip
    • -p: Server rpc 監聽埠
    • -m: 全局事務會話信息存儲模式,file、db、redis,優先讀取啟動參數
    • -n: Server node,多個Server時,需區分各自節點,用於生成不同區間的transactionId,以免衝突
    • -e: 多環境配置參考 http://seata.io/en-us/docs/ops/multi-configuration-isolation.html 

2.  業務系統集成 Seata Client

步驟一:添加seata依賴(建議單選)

  • 依賴seata-all
  • 依賴seata-spring-boot-starter,支持yml、properties配置(.conf可刪除),內部已依賴seata-all
  • 依賴spring-cloud-alibaba-seata,內部集成了seata,並實現了xid傳遞

步驟二:undo_log建表、配置參數(僅AT模式)

https://seata.io/zh-cn/docs/user/configurations.html

步驟三:數據源代理(不支持自動和手動配置並存)

1、如果使用seata-all

自動配置由註解@EnableAutoDataSourceProxy開啟,並可選擇jdk proxy或者cglib proxy。

如果採用XA模式,@EnableAutoDataSourceProxy(dataSourceProxyMode = "XA")

手動配置參考如下:

@Primary
@Bean("dataSource")
public DataSource dataSource(DataSource druidDataSource) {
    //AT 代理 二選一
    return new DataSourceProxy(druidDataSource);
    //XA 代理
    return new DataSourceProxyXA(druidDataSource)
}

2、如果使用seata-starter

預設就開啟了自動代理數據源,無需額外配置

如果使用自動代理數據源時,如果使用XA模式還需要調整配置文件application.yml

seata:
  data-source-proxy-mode: XA

如果想要關閉seata-spring-boot-starter的數據源自動代理,可調整配置文件application.yml

seata:
  enable-auto-data-source-proxy: false

步驟四:初始化GlobalTransactionScanner

自動,引入seata-spring-boot-starter、spring-cloud-starter-alibaba-seata等jar即可

手動

@Bean
public GlobalTransactionScanner globalTransactionScanner() {
   String applicationName = this.applicationContext.getEnvironment().getProperty("spring.application.name");
   String txServiceGroup = this.seataProperties.getTxServiceGroup();
   if (StringUtils.isEmpty(txServiceGroup)) {
       txServiceGroup = applicationName + "-fescar-service-group";
       this.seataProperties.setTxServiceGroup(txServiceGroup);
   }

   return new GlobalTransactionScanner(applicationName, txServiceGroup);
}

步驟五:業務使用

只需在業務方法上加上@GlobalTransactional 註解即可

3.  示例代碼

此處用官網的那個案例,調用關係如圖:

首先,建庫建表,腳本如下:

SQL腳本
CREATE DATABASE `account`;
USE `account`;
DROP TABLE IF EXISTS `t_account`;
CREATE TABLE `t_account` (
  `id` int NOT NULL AUTO_INCREMENT,
  `user_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` double(14,2) DEFAULT '0.00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `t_account` VALUES (1,'1',79.90);

DROP TABLE IF EXISTS `undo_log`;
CREATE TABLE `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 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='AT transaction mode undo table';


CREATE DATABASE `order`;
USE `order`;
DROP TABLE IF EXISTS `t_order`;
CREATE TABLE `t_order` (
  `id` int NOT NULL AUTO_INCREMENT,
  `order_no` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `user_id` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `commodity_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `count` int DEFAULT '0',
  `amount` double(14,2) DEFAULT '0.00',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=21 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

DROP TABLE IF EXISTS `undo_log`;
CREATE TABLE `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 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='AT transaction mode undo table';


CREATE DATABASE `stock`;
USE `stock`;
DROP TABLE IF EXISTS `t_stock`;
CREATE TABLE `t_stock` (
  `id` int NOT NULL AUTO_INCREMENT,
  `commodity_code` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `count` int DEFAULT '0',
  PRIMARY KEY (`id`),
  UNIQUE KEY `commodity_code` (`commodity_code`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

INSERT INTO `t_stock` VALUES (1,'A001','立白洗潔精',7);

DROP TABLE IF EXISTS `undo_log`;
CREATE TABLE `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 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 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci COMMENT='AT transaction mode undo table';

註意版本:示例中使用的框架為 Spring Boot + Mybatis-Plus + Dubbo + Seata

雖然Seata最新版本是1.5.2,Dubbo最新版本為3.1.1,但這這兩個版本中二者不相容,可以降低其中一個的版本,比如

Seata 1.4.2 + Dubbo 3.1.1  或者  Seata 1.5.2 + Dubbo 2.7.18

本示例中採用的是 seata-spring-boot-starter 1.5.2 + dubbo 2.7.18

工程結構如圖

父pom.xml如下

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <groupId>com.cjs.example</groupId>
    <artifactId>seata-spring-boot-starter-samples</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>pom</packaging>

    <name>seata-spring-boot-starter-samples</name>

    <modules>
        <module>samples-common-service</module>
        <module>samples-stock-service</module>
        <module>samples-order-service</module>
        <module>samples-account-service</module>
        <module>samples-business-service</module>
    </modules>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <spring-boot.version>2.7.5</spring-boot.version>
        <dubbo.version>2.7.18</dubbo.version>
        <seata.version>1.5.2</seata.version>
        <mybatis-plus.version>3.5.2</mybatis-plus.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring-boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <!--
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-dependencies-bom</artifactId>
                <version>${dubbo.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            -->

            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo</artifactId>
                <version>${dubbo.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-spring-boot-starter</artifactId>
                <version>${dubbo.version}</version>
            </dependency>
            <dependency>
                <groupId>org.apache.dubbo</groupId>
                <artifactId>dubbo-registry-nacos</artifactId>
                <version>${dubbo.version}</version>
            </dependency>

            <dependency>
                <groupId>io.seata</groupId>
                <artifactId>seata-spring-boot-starter</artifactId>
                <version>${seata.version}</version>
            </dependency>

            <dependency>
                <groupId>com.baomidou</groupId>
                <artifactId>mybatis-plus-boot-starter</artifactId>
                <version>${mybatis-plus.version}</version>
            </dependency>
        </dependencies>

    </dependencyManagement>
</project>

子pom.xml如下,其它幾個類似不再重覆:

<?xml version="1.0" encoding="UTF-8"?>
<project
    xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.cjs.example</groupId>
        <artifactId>seata-spring-boot-starter-samples</artifactId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <groupId>com.cjs.example</groupId>
    <artifactId>samples-order-service</artifactId>
    <version>${parent.version}</version>
    <name>samples-order-service</name>
    <properties>
        <java.version>1.8</java.version>
    </properties>
    <dependencies>
        <dependency>
            <groupId>com.cjs.example</groupId>
            <artifactId>samples-common-service</artifactId>
            <version>${parent.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.dubbo</groupId>
            <artifactId>dubbo</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.dubbo</groupId>
            <artifactId>dubbo-spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.dubbo</groupId>
            <artifactId>dubbo-registry-nacos</artifactId>
        </dependency>
        <dependency>
            <groupId>io.seata</groupId>
            <artifactId>seata-spring-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
        </dependency>
        <dependency>
            <groupId>mysql</groupId>
            <artifactId>mysql-connector-java</artifactId>
            <scope>runtime</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
</project>

application.yml

server:
  port: 8083
  servlet:
    context-path: /order
spring:
  application:
    name: samples-order-service
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    url: jdbc:mysql://127.0.0.1:3306/order?useSSL=false&useUnicode=true&characterEncoding=utf-8&serverTimezone=Asia/Shanghai
    username: root
    password: 123456
dubbo:
  protocol:
    name: dubbo
    port: 20883
  registry:
    address: nacos://127.0.0.1:8848
  config-center:
    address: nacos://127.0.0.1:8848
  metadata-report:
    address: nacos://127.0.0.1:8848
seata:
  enabled: true
  tx-service-group: my_test_tx_group
  service:
    vgroup-mapping:
      my_test_tx_group: default
  registry:
    type: nacos
    nacos:
      server-addr: 127.0.0.1:8848
      cluster: default
      group: SEATA_GROUP

核心代碼如下

依次啟動這四個項目,Postman訪問一下

通過斷點,觀察 global_table、lock_table、branch_table 等表數據的變化

剛開始,所有表中數據都是空的

執行到事務方法之後,global_table表中有了一條數據

當調用第一個遠程介面扣減庫存後,lock_table和branch_table表中都有了一條數據

同時,stock庫中undo_log表中也新增了一條數據

繼續往下執行,當調用第二個遠程介面創建訂單後,branch_table和lock_table中都新增了2條數據

account庫和order庫中的undo_log也有了數據

當事務方法執行完後,事務提交,上述表中此次事務相關數據清空

我們通過Seata Server的日誌可以更清晰的看到事務從創建到提交的整個過程

正式正常事務成功的情況,有時候由於業務報錯了,或者事務超時了,或者其它的情況,事務會回滾

4.  配置中心

在此之前,示例中沒有使用配置中心,而是採用本地配置文件的方式。但實際開發過程中,建議還是採用配置中心,下麵以nacos作為配置中心演示。

細心的同學會發現,微服務架構中有配置中心和註冊中心,Dubbo中也有配置中心和註冊中心,而本文講的Seata也有配置中心和註冊中心。那麼它們有什麼區別嗎?其實,並沒有區別,各是各的。微服務的配置中心和註冊中心你要配置,Dubbo的你也要配置,Seata的配置中心和註冊中心你還要配置,儘管它們可能是同一個實例,但那也得各配各的。

<dependency>
    <groupId>com.alibaba.nacos</groupId>
    <artifactId>nacos-client</artifactId>
    <version>2.1.1</version>
</dependency>

有兩種配置方式

方式一:放在某個命名空間下,每一個配置項作為一行,即每一行一個DataId

https://github.com/seata/seata/tree/master/script/config-center

在scripts/config-center目錄下有個config.txt,這個config.txt文件中為我們準備好了各種配置項,我們按需修改裡面的內容即可,然後可以通過腳本將config.txt中的內容導入nacos,當然也可以一條一條手動在nacos中創建

例如:

sh ${SEATAPATH}/script/config-center/nacos/nacos-config.sh -h localhost -p 8848 -g SEATA_GROUP -t 5a3c7d6c-f497-4d68-a71a-2e5e3340b3ca -u username -w password

註意:-g 指定Group  -t 指定命名空間

示例中上傳到預設命名空間下了

註意,config.txt中包含了Server端和Client端的配置,裡面註釋寫的也比較清楚哪些是Server端需要的配置,哪些是Client端的配置

導入配置以後,現在修改Server端的配置,seata-->conf-->application.yml中seata.config部分

seata:
  config:
    type: nacos
    nacos:
      server-addr: 127.0.0.1:8848
      group : "SEATA_GROUP"
      namespace: 
      username: 
      password: 

同時,每個業務系統裡面的配置也要修改一下

seata:
  config:
    type: nacos
    nacos:
      server-addr: 127.0.0.1:8848
      group : "SEATA_GROUP"
      namespace:
      username: 
      password: 

由於這裡導入配置的時候沒有-t指定命名空間,即導入到預設命名空間,所以配置裡面namespace為空,如果-t指定了特定的命名空間,則server和client端的namespace也要與之對應

方式二:通過dataId配置

首先,需要在nacos新建配置,此處dataId為seataServer.properties

然後,將修改後的config.txt內容粘貼進去,保存修改併發布即可

修改Server和Client端seata.config配置

seata:
  config:
    type: nacos
    nacos:
      server-addr: 127.0.0.1:8848
      group: "SEATA_GROUP"
      namespace: 
      dataId: "seataServer.properties"
      username: 
      password:

重啟Server和Client即可

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 2022-11-02 一、請求亂碼的處理方式: (1)如果是get請求的話,Tomcat8已經解決了此問題,Tomcat7中在“Tomcat7”中有一個配置文件“Conf”中的<Connector>中的“redirectPort”的下麵添加“URIEncoding=utf-8”,即可解決中文亂碼的問 ...
  • 2022-10-29 處理請求與響應的介面 一、HttpServletRequest (1)HttpServletRequest的含義:HttpServletRequest是一個介面,是ServletRequest介面的子介面,內部封裝了HTTP請求的相關信息。 (2)HttpServletRequ ...
  • 輪播圖組件 <template> <div id="banner"> <el-carousel height="400px"> <!-- 將banner_list迴圈--> <el-carousel-item v-for="item in banner_list" :key="item"> <!-- ...
  • 軟體技術基礎學習筆記(2)——獨立完成一個項目 | 這個作業屬於哪個課程 | <首頁 - 22軟體基礎 - 浙江理工大學 - 班級博客 - 博客園> | | | | | 這個作業的目標 | <在限定的期限內,完成一個滿足客戶要求的項目> | | 姓名-學號 | <曾翊>-<2020330301215 ...
  • 文章目錄 🦠一、前言 🦠二、軟體開發架構 🍀2.1、C/S架構 🍀2.2、B/S架構 🍀2.3、服務端與客戶端 🦠三、ip與埠號 🍀3.1、IP地址與埠號常識 🍀3.2、MAC和IP的概念與不同 🦠四、tcp協議和udp協議 🦠五、乙太網:區域網與交換機 🍀5.1、什麼是局 ...
  • 前言 環境使用 Python 3.8 Pycharm 模塊使用 requests jieba 結巴分詞 wordcloud 詞雲 數據來源分析 明確需求 <數據來源分析> 採集數據是什麼東西? 通過那個url地址得到想要數據的內容 抓包分析: 瀏覽器自帶工具 --> 開發者工具I. F12 或者 鼠 ...
  • 邏輯導航 1.當一訪問127.0.0.1:8000時,就會向某一地址發送請求 2.請求介面需要返迴首頁所需要的輪播圖片 3.前端vue輪播圖組件迴圈一下後端發送的圖片連接列表,依次展示輪播圖 輪播圖表設計 輪播圖中一些共有的欄位,我們可以創建一個公共的基礎表,以後需要該欄位直接基礎該表就行 基表,可 ...
  • 疫情尚未結束,我們需要做好自己,時刻防範,不給別人添麻煩。 今天我們來嘗試用Python抓取世界疫情,實現可視化地圖展示。 話不多說直接開搞! 採集數據 1、數據來源 數據來源於TX新聞,鏈接展示不了,就只貼圖了。 2、模塊 import requests import csv # Python學習 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...