国产 无码 综合区,色欲AV无码国产永久播放,无码天堂亚洲国产AV,国产日韩欧美女同一区二区

SpringCloud整合Seata1.6.1部署與使用Nacos方式

這篇具有很好參考價(jià)值的文章主要介紹了SpringCloud整合Seata1.6.1部署與使用Nacos方式。希望對大家有所幫助。如果存在錯(cuò)誤或未考慮完全的地方,請大家不吝賜教,您也可以點(diǎn)擊"舉報(bào)違法"按鈕提交疑問。

seata官網(wǎng):http://seata.io/zh-cn/index.html
seata-server: https://github.com/seata/seata/releases
SpringCloud整合Seata出現(xiàn)異常數(shù)據(jù)未回滾的解決方案

二. seata-server配置

1.1 下載seater-server

下載指定版本seata-server,本案例使用v1.6.1版本。

1.2 修改seata/conf/application.yml配置文件(已刪除無用配置)

server:
  port: 7091
spring:
  application:
    name: seata-server  # seata-server服務(wù)名
logging:
  config: classpath:logback-spring.xml
  file:
    path: ${user.home}/seata/runlogs  # 指定日志路徑
  extend:
    logstash-appender:
      destination: 127.0.0.1:4560
    kafka-appender:
      bootstrap-servers: 127.0.0.1:9092
      topic: logback_to_logstash

# seata可視化web界面賬號密碼
console:
  user:
    username: seata
    password: seata

seata:
	# 配置中心
  config:
    # support: nacos, consul, apollo, zk, etcd3
    type: nacos # 指定配置中心為nacos
    nacos:
      server-addr: 127.0.0.1:8848  # nacos的ip端口
      group: DEFAULT_GROUP	# 對應(yīng)的組,默認(rèn)為DEFAULT_GROUP
      namespace: a090b021-160c-42fb-98de-b1f9a5619d97 # 對應(yīng)的命名空間,在nacos中配置
      username: nacos
      password: nacos
      data-id: seataServer.properties # nacos中存放seata的配置文件,后面會提該文件的使用方式,相當(dāng)于seata服務(wù)啟動的時(shí)候需要注冊到nacos,并使用nacos中的配置文件
  
  # 注冊中心與上述config同理
  registry:
    # support: nacos, eureka, redis, zk, consul, etcd3, sofa
    type: nacos
    nacos:
      application: seata-server
      server-addr: 127.0.0.1:8848
      namespace: a090b021-160c-42fb-98de-b1f9a5619d97
      group: DEFAULT_GROUP
      cluster: default
      username: nacos
      password: nacos

  security:
    secretKey: SeataSecretKey0c382ef121d778043159209298fd40bf3850a017
    tokenValidityInMilliseconds: 1800000
    ignore:
      urls: /,/**/*.css,/**/*.js,/**/*.html,/**/*.map,/**/*.svg,/**/*.png,/**/*.ico,/console-fe/public/**,/api/v1/auth/login

【注意】

  • seata.config.typeseata.registry.type 都要修改為nacos
  • 修改configregistry中nacos的配置,其中namespacegroup須提前在nacos中進(jìn)行配置

二. nacos配置

2.1 新建namespace

新建namespace命名空間,需與上述seata-serverapplication.yml中配置一致

2.2 新建seata的seataServer.properties配置文件

在上述namespace下新建application.ymlseata.config.nacos.data-id提到的配置文件:seataServer.properties

seataServer.properties 已刪除無用配置

#For details about configuration items, see https://seata.io/zh-cn/docs/user/configurations.html
#Transport configuration, for client and server
transport.type=TCP
transport.server=NIO
transport.heartbeat=true
transport.enableTmClientBatchSendRequest=false
transport.enableRmClientBatchSendRequest=true
transport.enableTcServerBatchSendResponse=false
transport.rpcRmRequestTimeout=30000
transport.rpcTmRequestTimeout=30000
transport.rpcTcRequestTimeout=30000
transport.threadFactory.bossThreadPrefix=NettyBoss
transport.threadFactory.workerThreadPrefix=NettyServerNIOWorker
transport.threadFactory.serverExecutorThreadPrefix=NettyServerBizHandler
transport.threadFactory.shareBossWorker=false
transport.threadFactory.clientSelectorThreadPrefix=NettyClientSelector
transport.threadFactory.clientSelectorThreadSize=1
transport.threadFactory.clientWorkerThreadPrefix=NettyClientWorkerThread
transport.threadFactory.bossThreadSize=1
transport.threadFactory.workerThreadSize=default
transport.shutdown.wait=3
transport.serialization=seata
transport.compressor=none

#Transaction routing rules configuration, only for the client
# 此處的mygroup名字可以自定義,只修改這個(gè)值即可
service.vgroupMapping.mygroup=default
#If you use a registry, you can ignore it
service.default.grouplist=127.0.0.1:8091
service.enableDegrade=false
service.disableGlobalTransaction=false

#Transaction rule configuration, only for the client
client.rm.asyncCommitBufferLimit=10000
client.rm.lock.retryInterval=10
client.rm.lock.retryTimes=30
client.rm.lock.retryPolicyBranchRollbackOnConflict=true
client.rm.reportRetryCount=5
client.rm.tableMetaCheckEnable=true
client.rm.tableMetaCheckerInterval=60000
client.rm.sqlParserType=druid
client.rm.reportSuccessEnable=false
client.rm.sagaBranchRegisterEnable=false
client.rm.sagaJsonParser=fastjson
client.rm.tccActionInterceptorOrder=-2147482648
client.tm.commitRetryCount=5
client.tm.rollbackRetryCount=5
client.tm.defaultGlobalTransactionTimeout=60000
client.tm.degradeCheck=false
client.tm.degradeCheckAllowTimes=10
client.tm.degradeCheckPeriod=2000
client.tm.interceptorOrder=-2147482648
client.undo.dataValidation=true
client.undo.logSerialization=jackson
client.undo.onlyCareUpdateColumns=true
server.undo.logSaveDays=7
server.undo.logDeletePeriod=86400000
client.undo.logTable=undo_log
client.undo.compress.enable=true
client.undo.compress.type=zip
client.undo.compress.threshold=64k
#For TCC transaction mode
tcc.fence.logTableName=tcc_fence_log
tcc.fence.cleanPeriod=1h

#Log rule configuration, for client and server
log.exceptionRate=100

#Transaction storage configuration, only for the server. The file, db, and redis configuration values are optional.
# 默認(rèn)為file,一定要改為db,我們自己的服務(wù)啟動會連接不到seata
store.mode=db
store.lock.mode=db
store.session.mode=db
#Used for password encryption

#These configurations are required if the `store mode` is `db`. If `store.mode,store.lock.mode,store.session.mode` are not equal to `db`, you can remove the configuration block.
# 修改mysql的配置
store.db.datasource=druid
store.db.dbType=mysql
store.db.driverClassName=com.mysql.cj.jdbc.Driver
# 指定seata的數(shù)據(jù)庫,下面會提
store.db.url=jdbc:mysql://127.0.0.1:3306/seata?useUnicode=true&rewriteBatchedStatements=true
store.db.user=root
store.db.password=banmajio
store.db.minConn=5
store.db.maxConn=30
store.db.globalTable=global_table
store.db.branchTable=branch_table
store.db.distributedLockTable=distributed_lock
store.db.queryLimit=100
store.db.lockTable=lock_table
store.db.maxWait=5000


#Transaction rule configuration, only for the server
server.recovery.committingRetryPeriod=1000
server.recovery.asynCommittingRetryPeriod=1000
server.recovery.rollbackingRetryPeriod=1000
server.recovery.timeoutRetryPeriod=1000
server.maxCommitRetryTimeout=-1
server.maxRollbackRetryTimeout=-1
server.rollbackRetryTimeoutUnlockEnable=false
server.distributedLockExpireTime=10000
server.xaerNotaRetryTimeout=60000
server.session.branchAsyncQueueSize=5000
server.session.enableBranchAsyncRemove=false
server.enableParallelRequestHandle=false

#Metrics configuration, only for the server
metrics.enabled=false
metrics.registryType=compact
metrics.exporterList=prometheus
metrics.exporterPrometheusPort=9898

【注意】

  1. 修改service.vgroupMapping.mygroup=default該值,其中mygroup可以自定義,后面我們自己的服務(wù)啟動時(shí),配置文件中需要指定該group。
  2. 修改store.mode store.lock.mode store.session.mode這三個(gè)值為db,才能讓seata連接到下面的數(shù)據(jù)庫中。
  3. 修改store.db配置項(xiàng)下的配置,連接到自己的數(shù)據(jù)庫。
  4. 該文件參數(shù)的具體作用參考官網(wǎng):seata配置文件詳解(官網(wǎng))
  5. 該配置源文件存放在seata目錄下:seata/script/config-center/config.txt

三. MySQL配置

3.1 新建seata數(shù)據(jù)庫

數(shù)據(jù)庫的名稱與上述3.2seata配置文件中的store.db.url保持一致。

3.2 新建seata配置表

在上述庫中添加seata的配置表,sql文件存放在:seata/script/server/db/mysql.sql

-- -------------------------------- 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;

-- 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;

-- 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` (`xid`)
) ENGINE = InnoDB
  DEFAULT CHARSET = utf8mb4;

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);

3.3 業(yè)務(wù)數(shù)據(jù)庫添加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;

4. seata-server啟動

seata 的 /bin 目錄下 :/seata/bin 執(zhí)行下面的腳本

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

參數(shù)解釋:
-h: 將地址暴露給注冊中心,其他服務(wù)可以訪問seata服務(wù)器
-p:要偵聽的端口

啟動成功后,即可訪問 http://127.0.0.1:7091/#/login 改地址進(jìn)入seata的webui,用戶名與密碼默認(rèn)為seata,可在上面的1.2章節(jié)中中提到的application.yml配置項(xiàng):console.user中修改
SpringCloud整合Seata1.6.1部署與使用Nacos方式

并且查看nacos中的服務(wù)注冊中心是否可以看到seata-server
SpringCloud整合Seata1.6.1部署與使用Nacos方式

至此,seater-server的配置與部署完成

五. SpringCloud整合Seata

5.1 pom.xml依賴引入

		<!-- 注意一定要引入對版本,要引入spring-cloud版本seata,而不是springboot版本的seata-->
	    <dependency>
            <groupId>com.alibaba.cloud</groupId>
            <artifactId>spring-cloud-starter-alibaba-seata</artifactId>
            <!-- 排除掉springcloud默認(rèn)的seata版本,以免版本不一致出現(xiàn)問題-->
            <exclusions>
                <exclusion>
                    <groupId>io.seata</groupId>
                    <artifactId>seata-spring-boot-starter</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>io.seata</groupId>
                    <artifactId>seata-all</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!-- 上面排除掉了springcloud默認(rèn)色seata版本,此處引入和seata-server版本對應(yīng)的seata包-->
        <dependency>
            <groupId>io.seata</groupId>
            <artifactId>seata-spring-boot-starter</artifactId>
            <version>1.6.1</version>
        </dependency>

5.2 bootstrap.yml

配置文件中加入以下配置

seata:
  tx-service-group: mygroup # 事務(wù)分組名稱,要和服務(wù)端對應(yīng)
  service:
    vgroup-mapping:
      mygroup: default # key是事務(wù)分組名稱 value要和服務(wù)端的機(jī)房名稱保持一致

其中tx-service-group配置項(xiàng)要與 上述2.3章節(jié)中提到的service.vgroupMapping.mygroup=default中的group保持一致,
seata.service.vgroup-mapping.mygroup 中的mygroup同理。

5.3 啟動服務(wù)

我們自己的服務(wù)要與seata-server服務(wù)在同一個(gè)namespace
查看服務(wù)是否啟動成功
查看nacos的對應(yīng)的namespace中服務(wù)是否注冊成功

5.4 使用

在外層接口上增加@GlobalTransactional注解

    @GetMapping("/remoteTest")
    @GlobalTransactional
    public String remoteTest(){
        orderService.remoteTest();
        return "order success";
    }

只需要在最外層方法上添加注解即可,子事務(wù)方法上不需要添加@GlobalTransactional@Transactional注解。文章來源地址http://www.zghlxwxcb.cn/news/detail-435148.html

到了這里,關(guān)于SpringCloud整合Seata1.6.1部署與使用Nacos方式的文章就介紹完了。如果您還想了解更多內(nèi)容,請?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!

本文來自互聯(lián)網(wǎng)用戶投稿,該文觀點(diǎn)僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務(wù),不擁有所有權(quán),不承擔(dān)相關(guān)法律責(zé)任。如若轉(zhuǎn)載,請注明出處: 如若內(nèi)容造成侵權(quán)/違法違規(guī)/事實(shí)不符,請點(diǎn)擊違法舉報(bào)進(jìn)行投訴反饋,一經(jīng)查實(shí),立即刪除!

領(lǐng)支付寶紅包贊助服務(wù)器費(fèi)用

相關(guān)文章

  • springcloud alibaba 整合seata的TCC

    springcloud alibaba 整合seata的TCC

    一、seata服務(wù)端搭建同上篇。 二、seata客戶端的結(jié)構(gòu) 1.示例DEMO工程 下單,扣余額, 減庫存。 2. MAVEN配置。 ? ? 父工程:由于spring-cloud-starter-alibaba-seata依賴的seata-spring-boot-starter項(xiàng)目版本太低,所以要排除,使用1.4.2的版本。 子模塊:只需要引入基本的WEB框架。 3.配置文件

    2024年04月27日
    瀏覽(21)
  • SpringCloud+Nacos集成Seata-1.7.0分布式事務(wù)

    SpringCloud+Nacos集成Seata-1.7.0分布式事務(wù)

    Seata是一個(gè)比較成熟的分布式事務(wù)工具,非常好用,主流的的一套,網(wǎng)上大多都是1.4版本,以及不完整了,鄙人也是找了好久才找到有個(gè)1.7版本的詳細(xì)教程(放在最后面了,畢竟是別人的技術(shù),這里就當(dāng)記錄一下自己的解決方案) 首先我沒去github下載相對應(yīng)的seata,網(wǎng)址放下

    2024年02月11日
    瀏覽(25)
  • 安裝Docker&使用Docker安裝部署MySQL,Redis,RabbitMQ,Nacos,Seata,Minio

    安裝Docker&使用Docker安裝部署MySQL,Redis,RabbitMQ,Nacos,Seata,Minio

    sudo yum remove docker docker-client docker-client-latest docker-common docker-latest docker-latest-logrotate docker-logrotate docker-engine sudo yum remove -y yum-utils sudo yum install -y yum-utils sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo 如果這一步報(bào)錯(cuò),說嘗試其他鏡像的話,執(zhí)行下面步驟

    2024年02月05日
    瀏覽(49)
  • 深入學(xué)習(xí)SpringCloud Alibaba微服務(wù)架構(gòu),揭秘Nacos、Sentinel、Seata等核心技術(shù),助力構(gòu)建高效系統(tǒng)!

    鏈接: https://pan.baidu.com/s/1hRN0R8VFcwjyCTWCEsz-8Q?pwd=j6ej 提取碼: j6ej 復(fù)制這段內(nèi)容后打開百度網(wǎng)盤手機(jī)App,操作更方便哦 --來自百度網(wǎng)盤超級會員v4的分享 ??【第01階段】課程簡介:全面介紹課程內(nèi)容,為你提供學(xué)習(xí)引導(dǎo)和目標(biāo)規(guī)劃,讓你快速進(jìn)入學(xué)習(xí)狀態(tài)!?? ??【第02階段】基

    2024年02月12日
    瀏覽(38)
  • springcloud整合nacos

    springcloud整合nacos

    1.訂單服務(wù)(order) 1.1 安裝nocas Nacos 快速開始 --注意:nacos 我的是 nacos-server-1.4.1.tar.gz 1.2 新建order-nacos 模塊 1.3 修改pom文件 添加 nacos 依賴 1.4 配置文件添加 nacos 地址 1.5 創(chuàng)建啟動類 使用 RestTemplate 方式調(diào)用服務(wù) @LoadBalanced 以實(shí)現(xiàn)客戶端負(fù)載均衡 1.6 創(chuàng)建 OrderController 進(jìn)行遠(yuǎn)程

    2024年02月09日
    瀏覽(23)
  • springcloud整合nacos配置中心

    springcloud整合nacos配置中心

    前言 在當(dāng)今快速發(fā)展的云原生應(yīng)用開發(fā)環(huán)境中,配置中心的重要性不言而喻。 Nacos作為一個(gè)開源的動態(tài)服務(wù)發(fā)現(xiàn)、配置管理和服務(wù)管理平臺,為開發(fā)者提供了一種簡單而強(qiáng)大的方式來管理應(yīng)用程序的配置信息。 而Spring Boot作為一個(gè)快速構(gòu)建應(yīng)用程序的框架,與Nacos的結(jié)合可以

    2024年02月08日
    瀏覽(31)
  • 最新版 !快速掌握 JDK17 + springboot3 + springcloud Alibaba : 10、Seata 整合實(shí)現(xiàn)分布式事務(wù)

    最新版 !快速掌握 JDK17 + springboot3 + springcloud Alibaba : 10、Seata 整合實(shí)現(xiàn)分布式事務(wù)

    上一節(jié)成功啟動了seata,傳送門: https://blog.csdn.net/qq_16089135/article/details/133989446 1.1 官方文檔 中文文檔 Seata 是什么 1.2 模式分類 AT :基于支持本地 ACID 事務(wù)的關(guān)系型數(shù)據(jù)庫。 Java 應(yīng)用,通過 JDBC 訪問數(shù)據(jù)庫。 整體機(jī)制:二階段提交。 一階段:業(yè)務(wù)數(shù)據(jù)和回滾日志記錄在同一

    2024年02月06日
    瀏覽(21)
  • SpringCloud入門——微服務(wù)調(diào)用的方式 & RestTemplate的使用 & 使用nacos的服務(wù)名初步(Ribbon負(fù)載均衡)

    SpringCloud入門——微服務(wù)調(diào)用的方式 & RestTemplate的使用 & 使用nacos的服務(wù)名初步(Ribbon負(fù)載均衡)

    1.微服務(wù)調(diào)用的幾種方式,異步消息傳遞,http調(diào)用,服務(wù)網(wǎng)關(guān)調(diào)用,服務(wù)發(fā)現(xiàn)調(diào)用nacos; 2.spring提供的restTemplate,發(fā)送HTTP請求的客戶端工具類; 3.nacos使用服務(wù)名報(bào)錯(cuò),需要加Ribbon負(fù)載均衡; RPC (Remote Procedure Call)遠(yuǎn)程過程調(diào)用協(xié)議,一種通過網(wǎng)絡(luò)從遠(yuǎn)程計(jì)算機(jī)上請求服務(wù),

    2024年02月10日
    瀏覽(19)
  • SpringCloud(17~21章):Alibaba入門簡介、Nacos服務(wù)注冊和配置中心、Sentinel實(shí)現(xiàn)熔斷與限流、Seata處理分布式事務(wù)

    SpringCloud(17~21章):Alibaba入門簡介、Nacos服務(wù)注冊和配置中心、Sentinel實(shí)現(xiàn)熔斷與限流、Seata處理分布式事務(wù)

    Spring Cloud Netflix項(xiàng)目進(jìn)入維護(hù)模式 https://spring.io/blog/2018/12/12/spring-cloud-greenwich-rc1-available-now 說明 Spring Cloud Netflix Projects Entering Maintenance Mode 什么是維護(hù)模式 將模塊置于維護(hù)模式,意味著 Spring Cloud 團(tuán)隊(duì)將不會再向模塊添加新功能。我們將修復(fù) block 級別的 bug 以及安全問題,我

    2024年01月19日
    瀏覽(43)
  • springcloud整合nacos實(shí)現(xiàn)注冊發(fā)現(xiàn)中心

    springcloud整合nacos實(shí)現(xiàn)注冊發(fā)現(xiàn)中心

    高可用性:Nacos是一個(gè)高可用的注冊中心,它支持多節(jié)點(diǎn)部署和集群模式,保證了服務(wù)的穩(wěn)定性和可用性。當(dāng)某個(gè)節(jié)點(diǎn)發(fā)生故障時(shí),其他節(jié)點(diǎn)可以接管服務(wù)注冊和發(fā)現(xiàn)的功能,確保系統(tǒng)的正常運(yùn)行。 動態(tài)配置:Nacos不僅可以作為注冊中心,還提供了配置中心的功能。Spring Clo

    2024年02月16日
    瀏覽(23)

覺得文章有用就打賞一下文章作者

支付寶掃一掃打賞

博客贊助

微信掃一掃打賞

請作者喝杯咖啡吧~博客贊助

支付寶掃一掃領(lǐng)取紅包,優(yōu)惠每天領(lǐng)

二維碼1

領(lǐng)取紅包

二維碼2

領(lǐng)紅包