• TCC-Transaction Dubbo 项目 demo


    最早接触 TCC-TRANSACTION 在16年,当时团队成员做了分布式事务的选型研究,可惜没有亲自参与研读代码,后边项目分布式事务的架构基本上使用了seata 和 rocket 事务消息,或者使用消息做最终一致性。

    在成为架构师的学习路上,分布式事务的深入研究必不可少,以TCC-TRANSACTION 作为切入点。

    #搭建dubbo tcc 项目

    先上代码:
    https://github.com/andycom/SpringBoot-dubbo-study/releases/tag/demo

    首先参考的官方demo

    这里代码基本上是复制官方的dubbo 代码,但是在dubbo 服务中心使用了

     <dependency>
                <groupId>org.mengyungroupId>
                <artifactId>tcc-transaction-spring-boot-starterartifactId>
                <version>2.0.0version>
            dependency>
            <dependency>
                <groupId>org.mengyungroupId>
                <artifactId>tcc-transaction-dubboartifactId>
                <version>2.0.0version>
            dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    基于springboot 的自动组装

    配置文件:

    spring:
      profiles:
        active: dev
      tcc:
        storage:
          storage-type: remoting
          domain: "TCC:DUBBO:CAPITAL"
        recovery:
          recovery-enabled: true
          update-job-forcibly: true
        registry:
          registry-type: direct
          cluster-name: default
          direct:
            server-addresses: 127.0.0.1:12332
          zookeeper:
            connect-string: 127.0.0.1:2181
            max-retries: 4
      #      zookeeper:
      #        connect-string: 127.0.0.1:2181
      #        max-retries: 4
      #      nacos:
      #        server-addr: 127.0.0.1:8848
      application:
        name: dubboTccCapital
    dubbo:
      scan:
        base-packages: com.fancv.tcc.captial.service.impl
      protocol:
        name: dubbo
        port: 20882
      registry:
        address: zookeeper://192.168.0.23:2181
      application:
        id: dubboTccCapital
        name: dubboTccCapital
    server:
      port: 7091
    mybatis:
      mapper-locations: classpath:mapper/*.xml
      type-aliases-package: com.fancv.tcc.captial.dao
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41

    storage-type 可以选择 memory

    如果选择了remoting 事先需要启动 官方的tcc-transaction-server 项目

    本地化数据库

    官方实例直接用了内存数据库,为了方便研究,数据源我改成了mysql

    原文地址:https://www.fancv.com/article/1661351673

  • 相关阅读:
    (二十六)admin-boot项目之基于注解的数据字段脱敏
    Java框架学习顺序,主要讲解三大框架
    Spring如何解决循环依赖的
    到底什么才是真正的商业智能(BI)
    正式练习的第一个Python功能:加法计算
    6.1、Flink数据写入到文件
    springboot 链接doris 配置
    【机器学习】线性回归【上】朴素最小二乘估计
    深度学习--通过对Keras进行微调提升性能
    RocketMQ中Broker接收消息流程代码解析
  • 原文地址:https://blog.csdn.net/keep_learn/article/details/126514123