飞道的博客

GitHub 标星 14000+,阿里开源的 SEATA 如何应用到极致?

450人阅读  评论(0)

作者简介:袁鸣凯,家乐福技术总监, 高知特有限技术公司中国区架构师,HP上海研发技术专家,夸客金融首席架构师,现任家乐福中国区技术总监。多年互联网、企业级SOA、微服务、全渠道中台方面的架构设计实战经验,曾先后参与过Metlife、CIGNA(信诺保险)内部开发设计安全规范制定,以及参与过JAVA代码标准规范的编写。

出品 | CSDN(CSDNnews)

开篇

阿里把FESCAR开源了,开源后的名称叫SEATA,目前GIT上已经超13000+星。

可惜笔者遍历全网段,无一篇是生产实用级说明。同时,GIT官网上的相关文档缺失以及Sample都太HelloWorld了,无法应用在真正的生产环境上。

于是,笔者结合了在6、7年前那时在那个MQ年代来解决分布式事务的经验,结合这次的SEATA(最新一次COMMIT在2019年12月底)来讲一下最最新的也是目前最最潮的,如何解决分布式事务同时要考虑数据的最终一致性还要兼顾性能及高效、吐吞率时,作为阿里的这一套开源组合是怎么把它们做到极致的。

我们在全篇中会引用两个例子:

  • 第一个例子会用商品与库存来模拟SEATA中的AT模式的分布式事务如何实现;

  • 第二个例子会使用两个银行间的跨行转款来模拟SEATA中的TCC模式的分布式事务如何实现。

尤其,目前网上所有的对于SEATA的TCC讲解只有一篇阿里原本的SEATA-tcc,它原本自带的这个例子有如下几个缺点:

  • 若干个provider混在一起

  • provider和consumer混在一个项目

  • 不支持nacos连接

  • 不支持注解

然后网上所有的博客全部是围绕着这篇helloworld级别的例子而讲,其实很多都是抄袭,没有一篇融入了自己的领会与思想,也没有去把原本的例子按照生产级去做分离,这显然会误导很多读者。

因此,我们这次就在原本阿里官方的例子上做生产级别的增强,使得它可以适应你正要准备做的生产环境全模拟。

笔者在这边并不想作太多长篇大论或者像网上所有的关于SEATA方面的文章那样直接COPY PASTER一堆的所谓源码来凑字数。笔者在这边先讲一下分布式事务的几个重要概念,然后上生产上的实战级代码、应用和剖析。

简述分布式事务

在大型网站、并发流量高的网站,其实也不用太高,高到什么样的一个层级需要考虑分布式事务呢。看一下下面这样的一个描述:当你的生产环境的DB中假设有100个表,每个表数据量超过1亿。这时已经不是集群、主备、读写分离这么简单的一件事就可以搞定了。

或者你可以通过集群、主备、读写分离来提高网站前端的响应速度、吞吐量,可是你知道吗?如果你真的是在这样的一个量级的环境下呆过,你一定会对有一种情况不陌生!那就是当每个或者说主要单表超1亿数据的就算你有再多的主或者从或者分离,只要你在“主数据库”上作一条修改(删除或者是更新),它就会有一个动作叫作“主从同步”。

然后你会发现,这个主从同步会造成你的生产数据库频繁的“主从延迟”,我这边指的是6主6从每个固态硬盘、64C CPU, 128GB这样的配置的mySQL哦,如果你说“你们家狂有钱,都是512GB,128C的小型机”我也说这种情况最多是晚几天会出现但迟早还会出现的。

当主从延迟出现后会发生什么呢?比如说你要删一条数据,主删了然后开始去试图同步从数据库时,它会锁库、锁表。假设你有1000个表(一个系统子模块就有1000个表,一个大型网站有个30-40个子模块对于大型网站来说很正常),每个表是上亿数据,任何一笔业务造成的JOIN操作时同时这个数据库还在同步主从库此时这个同步付出的代价是“6-8小时甚至更多”,同步失败,这个数据的一致性就会越来越糟糕,再说白了,你的经营数据就会受到严重影响。

严重到后来你数据库的磁盘快不够了、你要删一点历史数据,你都不敢去操作了,因为你一操作,从凌晨到早上8:00左右你的主从同步同步不完,库还锁着此时就会影响到了你的线上、线下的业务了。这都是因为数据库太大太重造成了连你要删点历史记录、日志都不敢动的情况。这时IT会相当的被动。

因此我们按照最优的设计会保证单表数据不要超过2000万条,此时我们就会去做表的业务垂直折分,于是就有了微服务,它就会折成这样的架构。我们可以看到每一个数据库与服务都会折开甚至同一个会员也会折成每1000万数据一个库对应着一个微服务实例。

折完了情况当然得到了很大程度的改善,性能、实时性、吞吐量都得到了提高。然后碰到了下面类似的场景了,此时分布式事务的问题就出现了:

场景一

从上例我们可以看到,当商品主数据与库存主数据被折开来后,就会发生一个数据一致性的问题。假设你在后台对商品主数据做了一个添加或者是更新的动作那么整个系统也要求相应的库存数据与主数据必须一致,而一旦你拆成了微服务后主数据与库存说白了其实已经变成了两个不同的系统,每个系统都有自己的独立DB。这时要解决的就是这2个系统间任何的一个更新操作失败后为了维护数据的一致性那么这两个相关的“服务”都需要回滚之前的操作。

 

场景二

银行跨行转款,假设帐户A是工行,它通过工行向B的招商银行帐户转帐过去。这个转帐可是一个分布式事务,要么成功要么失败,不可能会有“部分成功”,这也是要求数据最终一致性的一个分布式事务的场景。

无论是场景一还是场景二,它就讲究数据的最终一致性。对于这个问题的讨论20多年前就已经产生了,解决方案也早有了。

从最早的使用MQ的acknowledge模式在事务发起时先通知一下相关参与方,当所有相关参与方commit(成功)后主发起事务再显示成功,如果有一方失败,每一个参与方都会被通知到,此时再逐级回滚事务。到现代的分布式事务、跨表事务都是为了解决类似问题而诞生。

但是,传统的做法在面对大流量大并的场景下,如果是类似最早的MQ的这种逐级通知方式它就会严重影响系统的交易时的性能,它的吞吐量就会受到制约。

但是在使用分布式事务的场景中,我们要求的是数据的最终一致性,它势必会涉及到锁库、锁表、锁业务段,因此我们近20年来一直也都在数据的一致性和性能间试图达到一个平衡。

这于是就诞生了几大核心的解决方案,即:2PC(二阶段)提交、3PC(三阶段-在二阶段上加了一个准备阶段)与TCC(事务补偿)机制。

对于这几大核心解决方案的原理涉及到的CAP和PAXOS理论本文不做探讨,网上太多相关论文了,如果你要应付PPT架构师面试可以去死记硬背,如果你要上生产代码,那么我们接下去继续说。这边只做简单叙述2PC与TCC的核心机制。

2PC(二阶段)提交

1)第一阶段:准备阶段(prepare)

协调者通知参与者准备提交订单,参与者开始投票。

协调者完成准备工作向协调者回应Yes。

2)第二阶段:提交(commit)/回滚(rollback)阶段

协调者根据参与者的投票结果发起最终的提交指令。

如果有参与者没有准备好则发起回滚指令。

  1. 应用程序通过事务协调器向两个库发起prepare,两个数据库收到消息分别执行本地事务(记录日志),但不提交,如果执行成功则回复yes,否则回复no。

  2. 事务协调器收到回复,只要有一方回复no则分别向参与者发起回滚事务,参与者开始回滚事务。

  3. 事务协调器收到回复,全部回复yes,此时向参与者发起提交事务。如果参与者有一方提交事务失败则由事务协调器发起回滚事务。

TCC事务补偿式提交

TCC事务补偿是基于2PC实现的业务层事务控制方案,它是Try(准备)、Confirm(提交)和Cancel(回滚)三个单词的首字母,含义如下:

1) Try 检查及预留业务资源完成提交事务前的检查,并预留好资源。

2) Confirm 确定执行业务操作,对try阶段预留的资源正式执行。

3) Cancel 取消执行业务操作,对try阶段预留的资源释放。

1. Try

转帐时,from库和to库分别进行帐户号信息、余额信息、冻洁转帐款项的操作,并锁定资源。

2. Confirm

from帐户把转帐金额变成冻结金额,然后from帐户扣除转帐金额同时在操作时进行记录锁定。to帐户把转帐金额变成冻结金额,然后to帐户余额+转帐金额=剩余金额同时在操作时进行记录锁定。

3. Cancel阶段

如果在from和to的各自业务中有任何一步抛错或者说失败,那么from和to的所有操作都要取消各自的操作;

于是

  • from操作把余额+被冻结的金额=原有from余额;原有冻结金额归0;

  • to操作把冻结的金额-转帐金额=原冻结金额,to操作把余额-转帐=原有余额;

以上所有步骤必须实现“业务幂等”,什么叫“业务幂等”?

业务幂等

就是无论以上各自步骤如何操作,它们的业务关联性必须相等,比如说:

  • from帐户原有100,冻结字段为0元,欲转出10元;

  • to帐户原有100,冻结字段为0元,欲从from转入10元;

那么以上一圈步骤轮下来有一步操作了,必须回到这个起始原点的状态。这就需要我们的应用程序做中间状态的保留以及在程序代码里预埋“业务补偿”或者我们也把它称为“反交易”逻辑。

好了,以上就是核心逻辑,不再展开更深入的原理,再展开就涉及到算法和理论了,我们这边不是为了帮大家应对面试而是帮大家真正的走上“生产环境”。因此下面就要开始show me the code了,我上面画图时其实已经预留了整体的“架构设计”了,因此下面就围绕着以上的2个场景我们来使用springboot+dubbo+nacos+SEATA来实现它们。

SEATA+Nacos的组合

这边需要介绍一下SEATA和nacos。

SEATA是什么?

SEATA的前身就是阿里蚂蚁金服的:FESCAR,它就是为了解决又要实现事务的最终一致性,又要保证整体系统的高性能、高吞吐还要解决为了实现以上的事务2PC或者是TCC时不对已经写好的业务代码进行太多的“侵入式破坏”来设计的。

写本文时它的最高版本为1.0.0GA版,最后一次GIT提交时间在2天前即1月19号还在不断有人提交Patch和fix bug。目前网上所有的sample要么跑不起来、要么不可用全部都是helloworld级别的东西,只可以单机玩无法跑生产,而且都不是结合nacos的应用的根本没法实用,文档又不全,因此我是把我实际生产中的经验直接分享给到各位的。

 

Nacos是什么?

这是一个相当成熟了的服务注册发现+资源管理器,目前最新版为1.1.4。它是作为取代Zookeeper的地位的,而事实上它也正在取代Zookeeper,它相当的成熟,比SEATA成熟,必竟它比SEATA出现的早吗。

我们都知道SpringCloud和Dubbo都有自己的基于ZK的服务管理中心对吧?那玩意过时了,简陋、又不易操作、不易运维,dubbo从2.6版开始已经内含nacos-registry了,因此越来越多的远程服务注册、服务自发现开始使用nacos了。

我们注意到了我在画TCC事务时放置了一个“配置管理中心”,这是我故意放置的,此处使用的正是Nacos。

SEATA+Nacos是如何协调工作的?

SEATA就是事务管理中心,Transaction Management,简称TM。各个Dubbo微服务会被当成一种Resource被注册进SEATA的“资源管理器”,我们简称RM。

那有Nacos什么事?

大家想一下我上面说过的话,要解决的是“又要实现事务的最终一致性,又要保证整体系统的高性能、高吞吐还要解决为了实现以上的事务2PC或者是TCC时不对已经写好的业务代码进行太多的侵入式破坏“。注意此处的“不对写好的业务代码进行太多的侵入式破坏”这几个字眼。

如何不侵入式破坏?类反射+回调->Spring+回调,Yeah!

同时,各个微服务就是一套独立的系统,怎么让远程的2个系统或者是多个系统互相类反射?

那么我们的做法起源于最最最最古老的J2EE v1.2规范中的EJB的Session Bean的设计理念。

它的原理其实就是各个EJB(微服务,那时叫SOA)把自己的接口名的全路径以JNDI的寻址方式注册进J2EE容器(要玩J2EE可不能用Tomcat哦,Tomcat永远只是一个webcontainer,要玩J2EE必须使用Websphere,Weblogic或者是开源的JBOSS,spring+mybatis=Thisis not a J2EE)。然后不同参于的“服务组件”都通过这个JNDI来进行寻址并互相通知(调用)。

Dubbo的作者(包括他的开发团队)曾提出过这么一个思想:我觉得事务的管理不应该属于Dubbo框架,Dubbo只需实现可被事务管理即可,像JDBC和JMS都是可被事务管理的分布式资源,Dubbo只要实现相同的可被事务管理的行为,比如可以回滚, 其它事务的调度,都应该由专门的事务管理器实现。FESCAR就是在这么一个前提下在被架构出来的。

SEATA, Nacos, Dubbo三者间就正是这么一种羁绊。

  • Dubbo是微服务核心服务提供者;

  • Dubbo与Dubbo间的通信用的是远程接口,它需要一个远程的自动服务发现、注册管理中心,于是就有了Nacos;

  • 而SEATA是一种TM,它通过的是通过去注册管理中心里寻找相应的RM的注册地址,然后通过远程消息+异步回调机制来完成RM内的相关事务的统一协调与管理;

知道了这三者的关系后我们下面开始就用实例来实现这一次魔幻之旅吧。

SEATA使用讲解

所有工程源码位于我的git上,各位可以下载了后学习用:

https://github.com/mkyuangithub/mkyuangithub

SEATA Server端与SEATA Client端的选择

首先我们使用SEATA-server v0.9.0版本,它是一个中间件,启动在那边就可以了。但是对于它的客户端我们必须要注意使用seata-all version 1.0.0。

没错,server端和client端版本不一致,你没看错。

Server版我们还不能完全使用SEATA-server 1.0GA,如前文所提,它还不是一个稳定版本,而且还在不断的修相应的bug,0.9.0是一个比较稳定的版本也支持HA机制,是可以用来上生产的。

Client版我们坚持使用v1.0.0,那是因为0.8.0~0.9.0间的client版有Bug,这个Bug如果你不是真正的生产级别应用是发现不了的,因为如果你直接跑它的官方Sample那是没有任何问题,如果你要把多个微服务分开来布署,并且每个微服务还要有自己的DB(这才是生产级应用),然后通过nacos靠SEATA来协调不同微服务间的事务,它会造成你一个微服务提交事务后整个后台事务“死锁”,这也在git上被SEATA相关贡献者给证明了,这个bug相关的0.8.1~0.9.0的client端还在待修复中,而v1.0.0目前没有这个问题。

SEATA Server的配置与启动详解

目前全网所有的讲解SEATA的例子均出于两篇文章,这两篇一篇是阿里内部开发人员通过SEATA中相应的源码来说明这对搞原理的人来说可以做做相应的学术研究,另一篇是等于把git上的sample原份不动的抄了一下也没有太多实际的生产价值,并且会误导真正要去关注其技术的读者。

我们这边就拿SEATA-Server0.9.0+Nacos1.1.4来做我们实例的讲解。

两个者的部署运行包请去它们各自的官方git上下载,我这边也给出了这两者的官网下载地址:

https://github.com/seata/seata/releases/download/v0.9.0/seata-server-0.9.0.zip

https://github.com/alibaba/nacos/releases/download/1.1.4/nacos-server-1.1.4.zip

要下载tar包的读者们可直行去下面这两个网址下载:

https://github.com/seata/seata/releases

https://github.com/alibaba/nacos/releases

nacos怎么用我已经在上一篇阿里的nacos+springboot+dubbo2.7.3集成以及统一处理异常的两种方式看详细有讲述了。因此我们主要就来看SEATA的用法。我要强调的是本示例是推荐大家把nacos和SEATA全部部署在linux上进行使用的,为什么后面你就会知道了。

Seata-Server0.9.0下载后打开它是这么样的一个目录结构

你可以直接跑到bin目录下运行./seata-server.sh,但是我请你先不要这么干,我们进conf目录中进行一个简单的不超过5分钟的配置。如果你不看这章直接只管运行你会变成网上那些根本无法把它运用到实战的人群之一。

我们进入conf目录

SEATA支持两种运行模式,我们要使用nacos运行模式而不是file。

SEATA有两种运行模式:

  • 它可以依赖于nacos或者是zk、redis、springcloud的eureka的方式

  • 它也可以不依赖于任何第三方,仅靠client端与SEATA间进行通讯,它使用的就是这个conf目录内的file.conf了

因此,如果你要使用nacos来做SEATA的“托载”,就请把这个file.conf删了,而网上所有的教程竟然都是保留着它。

剁了它吧!

我们用的是SEATA+nacos的这种模式来跑我们的实例的。

至于为什么使用file模式?它和其它模式有什么不一样的地方呢?

我们打开conf目录下的registry.conf目录来一窥究竟吧,下面是registry.conf的内容:


   
  1. registry {
  2.    # file 、nacos 、eureka、redis、zk、consul、etcd3、sofa
  3.   type =  "file"
  4.   nacos {
  5.   serverAddr =  "localhost"
  6.      namespace = ""
  7.      cluster = " default"
  8.   }
  9.    eureka {
  10.      serviceUrl = " http:// localhost:8761/ eureka"
  11.      application = " default"
  12.      weight = "1"
  13.   }
  14.    redis {
  15.      serverAddr = " localhost:6379"
  16.      db = "0"
  17.   }
  18.    zk {
  19.      cluster = " default"
  20.      serverAddr = "127.0.0.1:2181"
  21.      session. timeout = 6000
  22.      connect. timeout = 2000
  23.   }
  24.    consul {
  25.      cluster = " default"
  26.      serverAddr = "127.0.0.1:8500"
  27.   }
  28.    etcd3 {
  29.      cluster = " default"
  30.      serverAddr = " http:// localhost:2379"
  31.   }
  32.    sofa {
  33.      serverAddr = "127.0.0.1:9603"
  34.      application = " default"
  35.      region = " DEFAULT_ZONE"
  36.      datacenter = " DefaultDataCenter"
  37.      cluster = " default"
  38.      group = " SEATA_GROUP"
  39.      addressWaitTime = "3000"
  40.   }
  41.    file {
  42.     name = " file. conf"
  43.   }
  44. }
  45. config {
  46.   #  filenacos 、 apollozkconsuletcd3
  47.    type = " file"
  48.    nacos {
  49.      serverAddr = " localhost"
  50.      namespace = ""
  51.   }
  52.    consul {
  53.      serverAddr = "127.0.0.1:8500"
  54.   }
  55.    apollo {
  56.      app. id = " seata- server"
  57.      apollo. meta = " http://192.168.1.204:8801"
  58.   }
  59.    zk {
  60.      serverAddr = "127.0.0.1:2181"
  61.      session. timeout = 6000
  62.      connect. timeout = 2000
  63.   }
  64.    etcd3 {
  65.      serverAddr = " http:// localhost:2379"
  66.   }
  67.    file {
  68.      name = " file. conf"
  69.   }


Registry{}段与Config{}段。大家要注意的就是两个段:

这么一陀都要么?可能么?肯定我们只选用其中一种配置,这边我们用的就是nacos模式,于是我们把这个registry.conf设置成我下面这样即可,看到了吧,registry里的type设成nacos,config里也设成nacos,并指定nacos运行的地址,因此你的nacos一定先要运行起来。

这边再多插一个番外,nacos在windows下你直接使用startup.cmd启动是没问题的,它默认会在windows下使用standalone模式启动,而在linux下你不能直接startup.sh,因为在linux下它会默认使用cluster模式启动,因此在linux下你需要使用如下启动命令来启动你的nacos:


   
  1. ./startup.sh -m standalone


   
  1. registry {
  2.   type =  "nacos"
  3.   nacos {
  4.     serverAddr =  "192.168.56.101"
  5.      namespace = " public"
  6.      cluster = " default"
  7.   }
  8. }
  9. config {
  10.    type = " nacos"
  11.    nacos {
  12.      serverAddr = "192.168.56.101"
  13.      namespace = " public"
  14.      cluster = " default"
  15.   }
  16. }

因此一旦设置了type=nacos后就请把file.conf文件删除了即可,不要用file了。为什么这边的nacos的serverAddr不要写成:192.168.56.101:8848呢?因为SEATA目前写死掉如果是nacos那么代码取端口“写死8848”,相应后期1.0.0GA版本后一定会做成端口动态设置的,不过这不影响我们使用的。

因为SEATA如果通过的是file模式运行,客户端与SEATA server端不是通过注册中心去做服务连接和自动发现的,它是让拥有seata-client端的jar代码与seata server端直接通过tcp直连的模式的。

因为我们使用的是type=nacos,因此我们需要把SEATA的相关服务给注册到nacos中。

请使用纯文本编辑工具(一定是纯文本编辑工具哦)在seata/conf目录下建立一个叫“nacos.config.txt”的文件。对,你没看错文件名就是“nacos-config.txt”文件,而且一个字不能错。

内容如下,注意前方一陀参数预警,不过我会把重要的参数都给说一遍的。


   
  1. transport.type=TCP
  2. transport.server=NIO
  3. transport.heartbeat= true
  4. transport.thread-factory.boss-thread-prefix=NettyBoss
  5. transport.thread-factory.worker-thread-prefix=NettyServerNIOWorker
  6. transport.thread-factory.server-executor-thread-prefix=NettyServerBizHandler
  7. transport.thread-factory.share-boss-worker= false
  8. transport.thread-factory.client-selector-thread-prefix=NettyClientSelector
  9. transport.thread-factory.client-selector-thread-size= 1
  10. transport.thread-factory.client-worker-thread-prefix=NettyClientWorkerThread
  11. transport.thread-factory.boss-thread-size= 1
  12. transport.thread-factory.worker-thread-size= 8
  13. transport.shutdown.wait= 3
  14. service.vgroup_mapping.demo-tx-grp= default
  15. service. default.grouplist= 192.168 .56 .101: 8091
  16. service.enableDegrade= false
  17. service.disable= false
  18. service.max.commit.retry.timeout= -1
  19. service.max.rollback.retry.timeout= -1
  20. client.async.commit.buffer.limit= 10000
  21. client.lock.retry.internal= 10
  22. client.lock.retry.times= 30
  23. client.lock.retry.policy.branch-rollback-on-conflict= true
  24. client.table.meta.check.enable= true
  25. client.report.retry.count= 5
  26. client.tm.commit.retry.count= 1
  27. client.tm.rollback.retry.count= 1
  28. store.mode=db
  29. store.file.dir=file_store/data
  30. store.file.max-branch-session-size= 16384
  31. store.file.max- global-session-size= 512
  32. store.file.file-write-buffer-cache-size= 16384
  33. store.file.flush-disk-mode=async
  34. store.file.session.reload.read_size= 100
  35. store.db.datasource=druid
  36. store.db.db-type=mysql
  37. store.db.driver- class-name=com.mysql.jdbc.Driver
  38. store. db. url= jdbc: mysql://192.168.56.101:3306/ seata? useUnicode= true
  39. store. db. user= seata
  40. store. db. password=111111
  41. store. db. min- conn=1
  42. store. db. max- conn=3
  43. store. db. global. table= global_table
  44. store. db. branch. table= branch_table
  45. store. db. query- limit=100
  46. store. db. lock- table= lock_table
  47. recovery. committing- retry- period=1000
  48. recovery. asyn- committing- retry- period=1000
  49. recovery. rollbacking- retry- period=1000
  50. recovery. timeout- retry- period=1000
  51. transaction. undo. data. validation= true
  52. transaction. undo. log. serialization= jackson
  53. transaction. undo. log. save. days=7
  54. transaction. undo. log. delete. period=86400000
  55. transaction. undo. log. table= undo_log
  56. transport. serialization= seata
  57. transport. compressor= none
  58. metrics. enabled= false
  59. metrics. registry- type= compact
  60. metrics. exporter- list= prometheus
  61. metrics. exporter- prometheus- port=9898
  62. support. spring. datasource. autoproxy= false

妈妈呀,这么长一陀,不难理解,它其实也分几个段来理解的。

SEATA连接DB

SEATA一旦配置了nacos后它会在nacos中生成一个配置管理的服务,这个服务是需要依托于DB来做持久的,这时你需要把它的store.mode改成db。

此处你看到了,对于db你可以直接使用druid来作你的datasource,它自带druid客户端了:


   
  1. store.db.datasource=druid
  2. store.db.db-type=mysql
  3. store.db.driver- class-name=com.mysql.jdbc.Driver
  4. store. db. url= jdbc: mysql://192.168.56.101:3306/ seata? useUnicode= true
  5. store. db. user= seata
  6. store. db. password=111111
  7. store. db. min- conn=1
  8. store. db. max- conn=3

配完了db不要忘记在db中手动运行conf/目录下的一个叫db_store.sql的文件,它会生成SEATA所需运行的3个表。


   
  1. -- the table to store GlobalSession data
  2. drop table  if exists `global_table`;
  3. create table `global_table` (
  4.   `xid` varchar( 128)  not  null,
  5.   `transaction_id` bigint,
  6.   `status` tinyint not  null,
  7.   `application_id` varchar( 32),
  8.   `transaction_service_group` varchar( 32),
  9.   `transaction_name` varchar( 128),
  10.   `timeout` int,
  11.   `begin_time` bigint,
  12.   `application_data` varchar( 2000),
  13.   `gmt_create` datetime,
  14.   `gmt_modified` datetime,
  15.   primary key (`xid`),
  16.   key `idx_gmt_modified_status` (`gmt_modified`, `status`),
  17.   key `idx_transaction_id` (`transaction_id`)
  18. );
  19. -- the table to store BranchSession data
  20. drop table  if exists `branch_table`;
  21. create table `branch_table` (
  22.   `branch_id` bigint not  null,
  23.   `xid` varchar( 128) not  null,
  24.   `transaction_id` bigint ,
  25.   `resource_group_id` varchar( 32),
  26.   `resource_id` varchar( 256) ,
  27.   `lock_key` varchar( 128) ,
  28.   `branch_type` varchar( 8) ,
  29.   `status` tinyint,
  30.   `client_id` varchar( 64),
  31.   `application_data` varchar( 2000),
  32.   `gmt_create` datetime,
  33.   `gmt_modified` datetime,
  34.   primary key (`branch_id`),
  35.   key `idx_xid` (`xid`)
  36. );
  37. -- the table to store lock data
  38. drop table  if exists `lock_table`;
  39. create table `lock_table` (
  40.   `row_key` varchar( 128) not  null,
  41.   `xid` varchar( 96),
  42.   `transaction_id` long ,
  43.   `branch_id` long,
  44.   `resource_id` varchar( 256) ,
  45.   `table_name` varchar( 32) ,
  46.   `pk` varchar( 36) ,
  47.   `gmt_create` datetime ,
  48.   `gmt_modified` datetime,
  49.   primary key(`row_key`)
  50. );

这边的server.vgroup_mapping指的就是分布式事务生效的那个“范围”,看下图就懂了:

这边的事务作用group就是我们的service.vgroup_mappiing然后“小点点”后面的这个名字了,这个名字你必须和你在SEATA client端带的事务group名一致。

什么是SEATA客户端,喏,上图中的2个dubbo和那个消费者(consumer)就是SEATA的客户端,seata-server0.9.0就是server端。

service.default.grouplist=192.168.56.101:8091是什么意思?

很简单,就是为这个事务范围它会开启一个基于netty的远程服务,它是一个远程消息服务。当任何一段抛出Exception,这个消息服务就会触发它的onMessage方法中的相应的逻辑,它要做的事就是去nacos中寻找注册进去的provider端和consumer端,然后通过回调接口来通知各个事务参与者要么提交,要么回滚用的。

因此这边的ip或者是hostname就是指向SEATA server端自身的ip即可。

其实这么长一陀参数,我们只要讲这几个核心参数即可,其它的参数?你们自己去看看,那都是用来调解性能阀值的,你配过druid的相关阀值参数就会配那余下的几个参数,这个可以留给大家根据自身部署环境去做调整,没有一个绝对的答案。

全配置完后我们要开始启动SEATA server了。等等等等!还有一个步骤!

你配完这个nacos-config.txt后不代表SEATA启动时就会加载它,不会的哦,这个文件是要倒过来先“注入nacos”的,而且是在SEATA启动前先注入给到nacos的,因此你的nacos必须在第1步骤中就启动起来。

我们在SEATA的conf目录下看到有这么两个文件,一个叫nacos-config.sh一个叫nacos-config.py。它们的作用就是:

nacos-config.sh 192.168.56.101

此时SEATA会自动找到命令后的ip加上:8848端口号,然后找到conf目录下的nacos-config.txt文件,然后把nacos-config.txt文件里的那一陀内容全部注入到nacos中去的。


这边重提一下上面说的为什么我推荐大家要在linux下用nacos和SEATA,你们看到了,它没有nacos-config.bat哈,你要在windows下用要么你装个cygwin要么装一个python for windows环境。


此处千万记得,在nacos-config.txt文件最后不要留空行啊,因为nacos-config.sh也会把空行当成null值给set进nacos的。

或者你在linux下完成了我上述这些步骤后,再把个SEATA copy回到windows下,然后通过seata/bin下的seata-server.bat运行哈?这不折腾吗?

启动前最后要配一个东西,什么?logback.xml文件。

它里面指定了SEATA的log生成在哪儿,要不,它会生成在这些地方 :

  • windows下默认的seata log生成在c盘的user目录下;

  • linux就生成在/home/登录用户下的logs/seata了;

全设完了,我们就可以通过以下命令来启动seata了。


   
  1. ./seata-server.sh

 

SEATA基于2PC的AT模式的生产实例

所有代码我已经放置在了我的git上了,地址在这:

https://github.com/mkyuangithub/mkyuangithub

我们在这个例子中会设计2个dubbo service:

  1. seata-product-service

  2. seata-stock-service

设计一个controller,seata-demo-consumer,它会通过这两个dubbo service分别在product库和stock库同时插入一条记录,如:


   
  1. {
  2.      "productname" :  "tea",
  3.      "stock" :  10000
  4. }

要么成功全部提交事务;这两个dubbo service可是分别连着自己的物理数据库,连链接都不同的数据库的,并且这两个dubboservice启动在两个不同的jvm实例中,以此来完成:

  • 要么在操作过程中有任何Exception抛出那么两个Dubbo Service全部回滚各自的业务以保持分布式事务的最终数据一致性;

先不急着分析代码,们在做代码前笔者要把SEATA结合spring boot和nacos的坑好好的给各位快速撸一把。

我们做1个consumer来沟通这两个dubbo service的架构入手!

工程整体介绍

我们一共会分成三个工程:

  • seata-product-service,连接着productDB

  • seata-stock-service,连接着stockDB

  • seata-demo-consumer,它是一个springboot controller,在一个service方法内同时调用product与stock的dubbo service来完成t_product和t_stock表的插入动作

工程搭建时的通用配置注意事项

每一个工程记得要在它们的src/main/resources目录下放置一个registry.conf,它用来让每个工程内的seata-all的客户端可以访问到SEATA。三个工程都要放。

每个工程要有registry.conf文件

seata-product-service与seata-stock-service工程内的registry.conf会调用工程的maven中的:


   
  1. <dependency>
  2.             <groupId>io.seata</groupId>
  3.             <artifactId>seata-all</artifactId>
  4.         </dependency>

registry.conf文件内容如下把自身注册进RM(Resource Manager)里。如果你的type选用的是file那么你还要在每个工程的src/main/resources内放置一个file.conf的文件。文件内容必须和seata-server端的conf/file.conf文件内容一致。目前网上的所谓例子都是基于file来做的,它不会使用到注册中心的概念只会在SEATA所属的客户端和seata-server端使用本地开启netty然后通过8091端口来互传,因此我才说这不是生产级的应用。

registry.conf文件内容如下:


   
  1. registry {
  2.   type =  "nacos"
  3.   nacos {
  4.     serverAddr =  "192.168.56.101"
  5.      namespace = " public"
  6.      cluster = " default"
  7.   }
  8. }
  9. config {
  10.    type = " nacos"
  11.    nacos {
  12.      serverAddr = "192.168.56.101"
  13.      namespace = ""
  14.   }
  15. }

而seata-demo-consumer里有一个普通的service方法,它是一个dubbo consumer,在它的方法内会有一个这样的标记。

这个@GlobalTransactional用来通过nacos寻址返向找到product和stock内的dubbo provider然后再回调相应的provider service中的涉及到db的transaction来执行回滚或提交。它只安置于调用若干个dubboservice的业务service这一层,各dubbo service内不需要加这个参数(除非你有事嵌套和传播的需求)。

为此,我们还需要多做一步,那就是把SEATA的transaction注入到有DB涉及到的dubbo provider工程内,见下文。

使用SEATA datasource proxy来代理每个dubbo的事务

在dubbo工程内,有涉及到操作DB的,都需要在连接dataSource时这样进行配置,此处我们使用spring boot全注解方式来连接DB。


   
  1. package org.sky.product.config;
  2. import org.springframework.boot.context.properties.ConfigurationProperties;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.context.annotation.Primary;
  6. import org.springframework.jdbc.core.JdbcTemplate;
  7. import org.springframework.jdbc.datasource.DataSourceTransactionManager;
  8. import com.alibaba.druid.pool.DruidDataSource;
  9. import io.seata.rm.datasource.DataSourceProxy;
  10. import io.seata.spring.annotation.GlobalTransactionScanner;
  11. @Configuration
  12. public  class DruidConfig {
  13.     @Bean
  14.     @ConfigurationProperties(prefix =  "spring.datasource")
  15.      public DruidDataSource druidDataSource() {
  16.          return  new DruidDataSource();
  17.     }
  18.      /**
  19.      * init datasource proxy
  20.      * 
  21.      * @Param: druidDataSource datasource bean instance
  22.      * @Return: DataSourceProxy datasource proxy
  23.      */
  24.     @Bean
  25.      public DataSourceProxy dataSourceProxy(DruidDataSource druidDataSource) {
  26.          return  new DataSourceProxy(druidDataSource);
  27.     }
  28.     @Bean
  29.      public DataSourceTransactionManager transactionManager(DataSourceProxy dataSourceProxy) {
  30.          return  new DataSourceTransactionManager(dataSourceProxy);
  31.     }
  32.      /**
  33.      * init jdbc template by using the dataSourceProxy
  34.      * 
  35.      * @Return: JdbcTemplate
  36.      */
  37.     @Primary
  38.     @Bean
  39.      public JdbcTemplate dataSource(DataSourceProxy dataSourceProxy) {
  40.          return  new JdbcTemplate(dataSourceProxy);
  41.     }
  42.      /**
  43.      * init global transaction scanner
  44.      *
  45.      * @Return: GlobalTransactionScanner
  46.      */
  47.     @Bean
  48.      public GlobalTransactionScanner globalTransactionScanner() {
  49.          return  new GlobalTransactionScanner( "seata-product-service""demo-tx-grp");
  50.     }
  51. }

每个GlobalTransactionScanner中相应参数讲解

以上代码中最后一个@Bean配置内有这么一句:

return newGlobalTransactionScanner("seata-product-service","demo-tx-grp");

此处的第一个参数是你的dubbo-application-name,它对应于你的application.properties文件内的如下这么一块内容。每个dubbo provider的name都不一样的。


   
  1. dubbo.protocol.id=dubbo
  2. dubbo.protocol.name=dubbo
  3. dubbo.application.name=seata-product-service
  4. dubbo.application.id=seata-product-service


此处的第二个参数就是“全局事务的范围”,它也对应着我们在SEATA的nacos-config.txt文件内配置的这一行,要是这个名字对不起来那么各SEATA client端无法通过seata-server:8091的netty端口连上SEATA的service group,客户端也会频繁抛 can not connect toserver的出错信息的:

各SEATA客户端对于回滚的设置

每个SEATA客户端连接着的DB库内要有一个undo_log表,这个表是供SEATA客户端自己调用的,它的建表语句就位于seata/conf目录内的db_undo_log.sql。

有参于事务的客户端的业务DB库内就必须要有一个这样的表,SEATA在回调dubbo provider时在提交和回滚时是会自动用到这张表的。


   
  1. CREATE TABLE `undo_log` (
  2.   `id` bigint( 20) NOT  NULL AUTO_INCREMENT,
  3.   `branch_id` bigint( 20) NOT  NULL,
  4.   `xid` varchar( 100) NOT  NULL,
  5.   `context` varchar( 128) NOT  NULL,
  6.   `rollback_info` longblob NOT  NULL,
  7.   `log_status` int( 11) NOT  NULL,
  8.   `log_created` datetime NOT  NULL,
  9.   `log_modified` datetime NOT  NULL,
  10.   `ext` varchar( 100DEFAULT  NULL,
  11.   PRIMARY KEY (`id`),
  12.   UNIQUE KEY `ux_undo_log` (`xid`,`branch_id`)
  13. ) ENGINE=InnoDB AUTO_INCREMENT= 1  DEFAULT CHARSET=utf8;

seata-product-service工程全代码

和之前的工程一样,它们共用一个parent即nacos-parent,这边给出seata-product-service工程的pom.xml文件。这边要记的就是SEATA的客户端一定要用1.0.0,这些版本号的工作都是在我的parent工程内制定的。


   
  1. <properties>
  2.         <java.version> 1.8</java.version>
  3.         <spring-boot.version> 1.5 .15.RELEASE</spring-boot.version>
  4.         <dubbo.version> 2.7 .3</dubbo.version>
  5.         <curator-framework.version> 4.0 .1</curator-framework.version>
  6.         <curator-recipes.version> 2.8 .0</curator-recipes.version>
  7.         <druid.version> 1.1 .20</druid.version>
  8.         <guava.version> 27.0 .1-jre</guava.version>
  9.         <fastjson.version> 1.2 .59</fastjson.version>
  10.         <dubbo-registry-nacos.version> 2.7 .3</dubbo-registry-nacos.version>
  11.         <nacos-client.version> 1.1 .4</nacos-client.version>
  12.         <mysql-connector-java.version> 5.1 .46</mysql-connector-java.version>
  13.         <disruptor.version> 3.4 .2</disruptor.version>
  14.         <aspectj.version> 1.8 .13</aspectj.version>
  15.         <spring.data.redis> 1.8 .14-RELEASE</spring.data.redis>
  16.         <skycommon.version> 0.0 .1-SNAPSHOT</skycommon.version>
  17.         <seata.version> 1.0 .0</seata.version>
  18.         <netty.version> 4.1 .42. Final</netty.version>
  19.         <nacos.spring.version> 0.1 .4</nacos.spring.version>
  20.         <lombok.version> 1.16 .22</lombok.version>
  21.         <javax.servlet.version> 3.1 .0</javax.servlet.version>
  22.         <mybatis.version> 3.4 .5</mybatis.version>
  23.         <mybatis.spring.version> 1.3 .1</mybatis.spring.version>
  24.         <maven.compiler.source>${java.version}</maven.compiler.source>
  25.         <maven.compiler.target>${java.version}</maven.compiler.target>
  26.         <compiler.plugin.version> 3.8 .1</compiler.plugin.version>
  27.         <war.plugin.version> 3.2 .3</war.plugin.version>
  28.         <jar.plugin.version> 3.1 .2</jar.plugin.version>
  29.         <project.build.sourceEncoding>UTF -8</project.build.sourceEncoding>
  30.         <project.reporting.outputEncoding>UTF -8</project.reporting.outputEncoding>
  31.     </properties>

下面是seata-product-service的pom.xml全内容 


   
  1. <project xmlns= "http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion> 4.0 .0</modelVersion>
  5.     <groupId>org.sky.demo</groupId>
  6.     <artifactId>seata-product-service</artifactId>
  7.     <version> 0.0 .1-SNAPSHOT</version>
  8.     <packaging>jar</packaging>
  9.     <name>seata-product-service</name>
  10.     <description>Demo project Dubbo+Nacos+Seata</description>
  11.     < parent>
  12.         <groupId>org.sky.demo</groupId>
  13.         <artifactId>nacos- parent</artifactId>
  14.         <version> 0.0 .1-SNAPSHOT</version>
  15.     </ parent>
  16.     <properties>
  17.         <project.reporting.outputEncoding>UTF -8</project.reporting.outputEncoding>
  18.     </properties>
  19.     <dependencies>
  20.         <dependency>
  21.             <groupId>org.springframework.boot</groupId>
  22.             <artifactId>spring-boot-starter-jdbc</artifactId>
  23.             <exclusions>
  24.                 <exclusion>
  25.                     <groupId>org.springframework.boot</groupId>
  26.                     <artifactId>spring-boot-starter-logging</artifactId>
  27.                 </exclusion>
  28.             </exclusions>
  29.         </dependency>
  30.         <dependency>
  31.             <groupId>org.apache.dubbo</groupId>
  32.             <artifactId>dubbo</artifactId>
  33.         </dependency>
  34.         <dependency>
  35.             <groupId>org.apache.curator</groupId>
  36.             <artifactId>curator-framework</artifactId>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>org.apache.curator</groupId>
  40.             <artifactId>curator-recipes</artifactId>
  41.         </dependency>
  42.         <dependency>
  43.             <groupId>mysql</groupId>
  44.             <artifactId>mysql-connector-java</artifactId>
  45.         </dependency>
  46.         <dependency>
  47.             <groupId>com.alibaba</groupId>
  48.             <artifactId>druid</artifactId>
  49.         </dependency>
  50.         <dependency>
  51.             <groupId>org.springframework.boot</groupId>
  52.             <artifactId>spring-boot-starter-test</artifactId>
  53.             <scope>test</scope>
  54.         </dependency>
  55.         <dependency>
  56.             <groupId>org.spockframework</groupId>
  57.             <artifactId>spock-core</artifactId>
  58.             <scope>test</scope>
  59.         </dependency>
  60.         <dependency>
  61.             <groupId>org.spockframework</groupId>
  62.             <artifactId>spock-spring</artifactId>
  63.         </dependency>
  64.         <dependency>
  65.             <groupId>org.springframework.boot</groupId>
  66.             <artifactId>spring-boot-configuration-processor</artifactId>
  67.             <optional> true</optional>
  68.         </dependency>
  69.         <dependency>
  70.             <groupId>org.springframework.boot</groupId>
  71.             <artifactId>spring-boot-starter-log4j2</artifactId>
  72.         </dependency>
  73.         <dependency>
  74.             <groupId>org.springframework.boot</groupId>
  75.             <artifactId>spring-boot-starter-web</artifactId>
  76.             <exclusions>
  77.                 <exclusion>
  78.                     <groupId>org.springframework.boot</groupId>
  79.                     <artifactId>spring-boot-starter-logging</artifactId>
  80.                 </exclusion>
  81.                 <exclusion>
  82.                     <groupId>org.springframework.boot</groupId>
  83.                     <artifactId>spring-boot-starter-tomcat</artifactId>
  84.                 </exclusion>
  85.             </exclusions>
  86.         </dependency>
  87.         <dependency>
  88.             <groupId>org.aspectj</groupId>
  89.             <artifactId>aspectjweaver</artifactId>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>com.lmax</groupId>
  93.             <artifactId>disruptor</artifactId>
  94.         </dependency>
  95.         <dependency>
  96.             <groupId>redis.clients</groupId>
  97.             <artifactId>jedis</artifactId>
  98.         </dependency>
  99.         <dependency>
  100.             <groupId>com.google.guava</groupId>
  101.             <artifactId>guava</artifactId>
  102.         </dependency>
  103.         <dependency>
  104.             <groupId>com.alibaba</groupId>
  105.             <artifactId>fastjson</artifactId>
  106.         </dependency>
  107.         <!-- Dubbo Registry Nacos -->
  108.         <dependency>
  109.             <groupId>org.apache.dubbo</groupId>
  110.             <artifactId>dubbo-registry-nacos</artifactId>
  111.         </dependency>
  112.         <dependency>
  113.             <groupId>com.alibaba.nacos</groupId>
  114.             <artifactId>nacos-client</artifactId>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>org.sky.demo</groupId>
  118.             <artifactId>skycommon</artifactId>
  119.             <version>${skycommon.version}</version>
  120.         </dependency>
  121.         <dependency>
  122.             <groupId>io.seata</groupId>
  123.             <artifactId>seata-all</artifactId>
  124.         </dependency>
  125.         <dependency>
  126.             <groupId>com.alibaba.boot</groupId>
  127.             <artifactId>nacos-config-spring-boot-starter</artifactId>
  128.             <exclusions>
  129.                 <exclusion>
  130.                     <artifactId>nacos-client</artifactId>
  131.                     <groupId>com.alibaba.nacos</groupId>
  132.                 </exclusion>
  133.             </exclusions>
  134.         </dependency>
  135.         <dependency>
  136.             <groupId>io.netty</groupId>
  137.             <artifactId>netty-all</artifactId>
  138.         </dependency>
  139.         <dependency>
  140.             <groupId>org.projectlombok</groupId>
  141.             <artifactId>lombok</artifactId>
  142.         </dependency>
  143.     </dependencies>
  144.     <build>
  145.         <finalName>${project.artifactId}</finalName>
  146.         <sourceDirectory>src/main/java</sourceDirectory>
  147.         <testSourceDirectory>src/test/java</testSourceDirectory>
  148.         <plugins>
  149.             <plugin>
  150.                 <groupId>org.apache.maven.plugins</groupId>
  151.                 <artifactId>maven-compiler-plugin</artifactId>
  152.             </plugin>
  153.             <plugin>
  154.                 <groupId>org.springframework.boot</groupId>
  155.                 <artifactId>spring-boot-maven-plugin</artifactId>
  156.                 <configuration>
  157.                     <jvmArguments>-Dfile.encoding=UTF -8</jvmArguments>
  158.                 </configuration>
  159.                 <executions>
  160.                     <execution>
  161.                         <goals>
  162.                             <goal>repackage</goal>
  163.                         </goals>
  164.                     </execution>
  165.                 </executions>
  166.             </plugin>
  167.             <plugin>
  168.                 <groupId>org.apache.maven.plugins</groupId>
  169.                 <artifactId>maven-war-plugin</artifactId>
  170.                 <version> 2.6</version>
  171.                 <configuration>
  172.                     <failOnMissingWebXml> false</failOnMissingWebXml>
  173.                 </configuration>
  174.             </plugin>
  175.         </plugins>
  176.         <resources>
  177.             <resource>
  178.                 <directory>src/main/resources</directory>
  179.                 <excludes>
  180.                     <exclude>application*.properties</exclude>
  181.                 </excludes>
  182.             </resource>
  183.             <resource>
  184.                 <directory>src/main/webapp</directory>
  185.                 <targetPath>META-INF/resources</targetPath>
  186.                 <includes>
  187.                     < include>** /**</include>
  188.                 </includes>
  189.             </resource>
  190.             <resource>
  191.                 <directory>src/main/resources</directory>
  192.                 <filtering>true</filtering>
  193.                 <includes>
  194.                     <include>application.properties</include>
  195.                 </includes>
  196.             </resource>
  197.         </resources>
  198.     </build>
  199. </project>

相应的t_product建表语句如下:


   
  1. CREATE TABLE `t_product` (
  2.   `product_id` int( 16) NOT  NULL AUTO_INCREMENT,
  3.   `product_name` varchar( 45) COLLATE utf8_bin  DEFAULT  NULL,
  4.   PRIMARY KEY (`product_id`)
  5. ) ;

application.properties

项目使用springboot全注解,来看看项目的application.properties文件的内容吧。


   
  1. spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
  2. spring.datasource.driverClassName=com.mysql.jdbc.Driver
  3. spring.datasource.url=jdbc:mysql: //192.168.56.101:3306/product?useUnicode=true&characterEncoding=utf-8&useSSL=false
  4. spring.datasource.username=product
  5. spring.datasource.password= 111111
  6. spring.datasource.initialize= false
  7. spring.redis.database= 0  
  8. spring.redis.host= 192.168 .56 .101
  9. spring.redis.port= 6379
  10. spring.redis.password= 111111
  11. spring.redis.pool.max-active= 10  
  12. spring.redis.pool.max-wait= -1  
  13. spring.redis.pool.max-idle= 10 
  14. spring.redis.pool.min-idle= 0  
  15. spring.redis.timeout= 1000
  16. #tomcat settings
  17. server.port= 8080
  18. server.tomcat.maxConnections= 300
  19. server.tomcat.maxThreads= 300
  20. server.tomcat.uriEncoding=UTF -8
  21. server.tomcat.maxThreads= 300
  22. server.tomcat.minSpareThreads= 150
  23. server.connectionTimeout= 20000
  24. server.tomcat.maxHttpPostSize= 0
  25. server.tomcat.acceptCount= 300
  26. #Dubbo provider configuration
  27. dubbo.protocol.id=dubbo
  28. dubbo.protocol.name=dubbo
  29. dubbo.application.name=seata-product-service
  30. dubbo.application.id=seata-product-service
  31. dubbo.registry.protocol=dubbo
  32. dubbo.registry.address=nacos: //192.168.56.101:8848
  33. dubbo.protocol.name=dubbo
  34. dubbo.protocol.port= 20880
  35. dubbo.protocol.threads= 2000
  36. dubbo.protocol.queues= 1000
  37. dubbo.protocol.threadpool=cached
  38. dubbo.provider.retries= 3
  39. dubbo.provider.threadpool=cached
  40. dubbo.provider.threads= 2000
  41. dubbo.provider.connections= 2000
  42. dubbo.provider.acceptes= 0
  43. dubbo.provider.executes= 0
  44. dubbo.consumer.actives= 0
  45. dubbo.scan.base-packages=org.sky.product.service.dubbo
  46. logging.config=classpath:log4j2.xml

以下是项目的自动注入相关资源到pring用的DruidConfig.java文件


   
  1. package org.sky.product.config;
  2. import org.springframework.boot.context.properties.ConfigurationProperties;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.context.annotation.Primary;
  6. import org.springframework.jdbc.core.JdbcTemplate;
  7. import org.springframework.jdbc.datasource.DataSourceTransactionManager;
  8. import com.alibaba.druid.pool.DruidDataSource;
  9. import io.seata.rm.datasource.DataSourceProxy;
  10. import io.seata.spring.annotation.GlobalTransactionScanner;
  11. @Configuration
  12. public  class DruidConfig {
  13.     @Bean
  14.     @ConfigurationProperties(prefix =  "spring.datasource")
  15.      public DruidDataSource druidDataSource() {
  16.          return  new DruidDataSource();
  17.     }
  18.      /**
  19.      * init datasource proxy
  20.      * 
  21.      * @Param: druidDataSource datasource bean instance
  22.      * @Return: DataSourceProxy datasource proxy
  23.      */
  24.     @Bean
  25.      public DataSourceProxy dataSourceProxy(DruidDataSource druidDataSource) {
  26.          return  new DataSourceProxy(druidDataSource);
  27.     }
  28.     @Bean
  29.      public DataSourceTransactionManager transactionManager(DataSourceProxy dataSourceProxy) {
  30.          return  new DataSourceTransactionManager(dataSourceProxy);
  31.     }
  32.      /**
  33.      * init jdbc template by using the dataSourceProxy
  34.      * 
  35.      * @Return: JdbcTemplate
  36.      */
  37.     @Primary
  38.     @Bean
  39.      public JdbcTemplate dataSource(DataSourceProxy dataSourceProxy) {
  40.          return  new JdbcTemplate(dataSourceProxy);
  41.     }
  42.      /**
  43.      * init global transaction scanner
  44.      *
  45.      * @Return: GlobalTransactionScanner
  46.      */
  47.     @Bean
  48.      public GlobalTransactionScanner globalTransactionScanner() {
  49.          return  new GlobalTransactionScanner( "seata-product-service""demo-tx-grp");
  50.     }
  51. }

可以看到它开了一个dubbo providerservice,dubbo.application.name申明了该dubbo服务的名称。并且这个dubbo provider service会运行在20880端口。


此处我们使用jdbcTemplate来做全工程的SQL访问。大家可以看到它使用了SEATA带的DatasourceProxy代理了DruiDatasource,然后再用GlobalTransationScanner来代理Spring的TransactionManager。

ProductDAO.java


   
  1. package org.sky.product.dao;
  2. import org.sky. exception.DemoRpcRunTimeException;
  3. public  interface ProductDAO {
  4.      public long addNewProduct(String productName) throws DemoRpcRunTimeException;
  5. }

ProductDAOImpl


   
  1. package org.sky.product.dao;
  2. import java.sql.Connection;
  3. import java.sql.PreparedStatement;
  4. import java.sql.SQLException;
  5. import javax.annotation.Resource;
  6. import org.sky.dao.BaseDAO;
  7. import org.sky. exception.DemoRpcRunTimeException;
  8. import org.springframework.jdbc.core.JdbcTemplate;
  9. import org.springframework.jdbc.core.PreparedStatementCreator;
  10. import org.springframework.jdbc.support.GeneratedKeyHolder;
  11. import org.springframework.jdbc.support.KeyHolder;
  12. import org.springframework.stereotype.Component;
  13. @Component
  14. public  class ProductDAOImpl extends BaseDAO implements ProductDAO {
  15.     @Resource
  16.      private JdbcTemplate jdbcTemplate;
  17.     @Override
  18.      public long addNewProduct(String productName) throws DemoRpcRunTimeException {
  19.         String prodSql =  "insert into t_product(product_name)values(?)";
  20.         long newProdId =  0;
  21.          try {
  22.             KeyHolder keyHolder =  new GeneratedKeyHolder();
  23.             jdbcTemplate.update( new PreparedStatementCreator() {
  24.                 @Override
  25.                  public PreparedStatement createPreparedStatement(Connection connection) throws SQLException {
  26.                     PreparedStatement ps = connection.prepareStatement(prodSql,  new String[] {  "id" });
  27.                     ps.setString( 1, productName);
  28.                      return ps;
  29.                 }
  30.             }, keyHolder);
  31.             newProdId = keyHolder.getKey().longValue();
  32.         }  catch ( Exception e) {
  33.              throw  new DemoRpcRunTimeException(
  34.                      "error occured on insert product with: product_id->\" + newProdId + \" and productname->\"\r\n"
  35.                             +  "                 + productName" + e.getMessage(),
  36.                     e);
  37.         }
  38.          return newProdId;
  39.     }
  40. }

然后我们给出ProductBizService,这个BizService只是一个普通的@Service,它会被ProductDubboService调用,整个SEATA的事务会通过这样的事务传播路径Dubbo->Service->Dao一路传进来,因此对于参于全局SEATA事务的@Service类就不需要再加@Transactional这样的注解了。


   
  1. package org.sky.product.service.biz;
  2. import org.sky. exception.DemoRpcRunTimeException;
  3. import org.sky.product.dao.ProductDAO;
  4. import org.sky.product.service.biz.ProductBizService;
  5. import org.sky.service.BaseService;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8. @Service
  9. public  class ProductBizServiceImpl extends BaseService implements ProductBizService {
  10.     @Autowired
  11.     ProductDAO productDAO;
  12.     @Override
  13.      public long addProduct(String productName) throws DemoRpcRunTimeException {
  14.         long newProdId =  0;
  15.          try {
  16.             newProdId = productDAO.addNewProduct(productName);
  17.         }  catch ( Exception e) {
  18.             logger.error( "error occured on Biz Service Side: " + e.getMessage(), e);
  19.              throw  new DemoRpcRunTimeException( "error occured on Biz Service Side: " + e.getMessage(), e);
  20.         }
  21.          return newProdId;
  22.     }
  23. }

ProductDubboServiceImpl.java

下面是product的微服务ProductDubboService的实现类,我们把ProductDubboService这种用于远程访问的Dubbo的Inerface(在EJB理念里我们管这种叫残根)都放置在了sky-common工程里了。下面给出ProductDubboService的实现类。


   
  1. package org.sky.product.service.dubbo;
  2. import org.apache.dubbo.config.annotation.Service;
  3. import org.sky. exception.DemoRpcRunTimeException;
  4. import org.sky.product.service.biz.ProductBizService;
  5. import org.sky.product.service.dubbo.ProductDubboService;
  6. import org.sky.service.BaseService;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. @Service(version =  "1.0.0", interfaceClass = ProductDubboService.class, timeout =  30000, loadbalance =  "roundrobin")
  9. public  class ProductDubboServiceImpl extends BaseService implements ProductDubboService {
  10.     @Autowired
  11.     ProductBizService productBizService;
  12.     @Override
  13.      public long addProduct(String productName) throws DemoRpcRunTimeException {
  14.         long result =  0;
  15.          try {
  16.             result = productBizService.addProduct(productName);
  17.             logger.info( "======>insert into t_product with product_id->" + result +  " and productname->" + productName
  18.                     +  " successfully");
  19.         }  catch ( Exception e) {
  20.             logger.error( "error occured on insert product with: product_id->\" + newProdId + \" and productname->\"\r\n"
  21.                     +  "                 + productName" + e.getMessage(), e);
  22.              throw  new DemoRpcRunTimeException(
  23.                      "error occured on insert product with: product_id->\" + newProdId + \" and productname->\"\r\n"
  24.                             +  "                 + productName" + e.getMessage(),
  25.                     e);
  26.         }
  27.          return result;
  28.     }
  29. }


最后,就是用于运行该工程用的springboot的Application.java文件了


   
  1. package org.sky.product;
  2. import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  5. import org.springframework.context.annotation.ComponentScan;
  6. import org.springframework.transaction.annotation.EnableTransactionManagement;
  7. @EnableDubbo
  8. @EnableAutoConfiguration
  9. @ComponentScan(basePackages = {  "org.sky.product" })
  10. public  class Application {
  11.      public  static void main(String[] args) {
  12.         SpringApplication.run(Application.class, args);
  13.     }
  14. }

运行起来后,它会把这个dubbo providerservice自动注册进nacos去。

因此启动顺序一定记得是mysql->nacos->seata再启动各个dubbo provider以及consumer。

 

seata-stock-service

pom.xml

同seata-product-service项目。


   
  1. <project xmlns= "http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion> 4.0 .0</modelVersion>
  5.     <groupId>org.sky.demo</groupId>
  6.     <artifactId>seata-stock-service</artifactId>
  7.     <version> 0.0 .1-SNAPSHOT</version>
  8.     <packaging>jar</packaging>
  9.     <name>seata-stock-service</name>
  10.     <description>Demo project Dubbo+Nacos+Seata</description>
  11.     < parent>
  12.         <groupId>org.sky.demo</groupId>
  13.         <artifactId>nacos- parent</artifactId>
  14.         <version> 0.0 .1-SNAPSHOT</version>
  15.     </ parent>
  16.     <properties>
  17.         <project.reporting.outputEncoding>UTF -8</project.reporting.outputEncoding>
  18.     </properties>
  19.     <dependencies>
  20.         <dependency>
  21.             <groupId>org.springframework.boot</groupId>
  22.             <artifactId>spring-boot-starter-jdbc</artifactId>
  23.             <exclusions>
  24.                 <exclusion>
  25.                     <groupId>org.springframework.boot</groupId>
  26.                     <artifactId>spring-boot-starter-logging</artifactId>
  27.                 </exclusion>
  28.             </exclusions>
  29.         </dependency>
  30.         <dependency>
  31.             <groupId>org.apache.dubbo</groupId>
  32.             <artifactId>dubbo</artifactId>
  33.         </dependency>
  34.         <dependency>
  35.             <groupId>org.apache.curator</groupId>
  36.             <artifactId>curator-framework</artifactId>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>org.apache.curator</groupId>
  40.             <artifactId>curator-recipes</artifactId>
  41.         </dependency>
  42.         <dependency>
  43.             <groupId>mysql</groupId>
  44.             <artifactId>mysql-connector-java</artifactId>
  45.         </dependency>
  46.         <dependency>
  47.             <groupId>com.alibaba</groupId>
  48.             <artifactId>druid</artifactId>
  49.         </dependency>
  50.         <dependency>
  51.             <groupId>org.springframework.boot</groupId>
  52.             <artifactId>spring-boot-starter-test</artifactId>
  53.             <scope>test</scope>
  54.         </dependency>
  55.         <dependency>
  56.             <groupId>org.spockframework</groupId>
  57.             <artifactId>spock-core</artifactId>
  58.             <scope>test</scope>
  59.         </dependency>
  60.         <dependency>
  61.             <groupId>org.spockframework</groupId>
  62.             <artifactId>spock-spring</artifactId>
  63.         </dependency>
  64.         <dependency>
  65.             <groupId>org.springframework.boot</groupId>
  66.             <artifactId>spring-boot-configuration-processor</artifactId>
  67.             <optional> true</optional>
  68.         </dependency>
  69.         <dependency>
  70.             <groupId>org.springframework.boot</groupId>
  71.             <artifactId>spring-boot-starter-log4j2</artifactId>
  72.         </dependency>
  73.         <dependency>
  74.             <groupId>org.springframework.boot</groupId>
  75.             <artifactId>spring-boot-starter-web</artifactId>
  76.             <exclusions>
  77.                 <exclusion>
  78.                     <groupId>org.springframework.boot</groupId>
  79.                     <artifactId>spring-boot-starter-logging</artifactId>
  80.                 </exclusion>
  81.                 <exclusion>
  82.                     <groupId>org.springframework.boot</groupId>
  83.                     <artifactId>spring-boot-starter-tomcat</artifactId>
  84.                 </exclusion>
  85.             </exclusions>
  86.         </dependency>
  87.         <dependency>
  88.             <groupId>org.aspectj</groupId>
  89.             <artifactId>aspectjweaver</artifactId>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>com.lmax</groupId>
  93.             <artifactId>disruptor</artifactId>
  94.         </dependency>
  95.         <dependency>
  96.             <groupId>redis.clients</groupId>
  97.             <artifactId>jedis</artifactId>
  98.         </dependency>
  99.         <dependency>
  100.             <groupId>com.google.guava</groupId>
  101.             <artifactId>guava</artifactId>
  102.         </dependency>
  103.         <dependency>
  104.             <groupId>com.alibaba</groupId>
  105.             <artifactId>fastjson</artifactId>
  106.         </dependency>
  107.         <!-- Dubbo Registry Nacos -->
  108.         <dependency>
  109.             <groupId>org.apache.dubbo</groupId>
  110.             <artifactId>dubbo-registry-nacos</artifactId>
  111.         </dependency>
  112.         <dependency>
  113.             <groupId>com.alibaba.nacos</groupId>
  114.             <artifactId>nacos-client</artifactId>
  115.         </dependency>
  116.         <dependency>
  117.             <groupId>org.sky.demo</groupId>
  118.             <artifactId>skycommon</artifactId>
  119.             <version>${skycommon.version}</version>
  120.         </dependency>
  121.         <dependency>
  122.             <groupId>io.seata</groupId>
  123.             <artifactId>seata-all</artifactId>
  124.         </dependency>
  125.         <dependency>
  126.             <groupId>com.alibaba.boot</groupId>
  127.             <artifactId>nacos-config-spring-boot-starter</artifactId>
  128.             <exclusions>
  129.                 <exclusion>
  130.                     <artifactId>nacos-client</artifactId>
  131.                     <groupId>com.alibaba.nacos</groupId>
  132.                 </exclusion>
  133.             </exclusions>
  134.         </dependency>
  135.         <dependency>
  136.             <groupId>io.netty</groupId>
  137.             <artifactId>netty-all</artifactId>
  138.         </dependency>
  139.         <dependency>
  140.             <groupId>org.projectlombok</groupId>
  141.             <artifactId>lombok</artifactId>
  142.         </dependency>
  143.     </dependencies>
  144.     <build>
  145.         <finalName>${project.artifactId}</finalName>
  146.         <sourceDirectory>src/main/java</sourceDirectory>
  147.         <testSourceDirectory>src/test/java</testSourceDirectory>
  148.         <plugins>
  149.             <plugin>
  150.                 <groupId>org.apache.maven.plugins</groupId>
  151.                 <artifactId>maven-compiler-plugin</artifactId>
  152.             </plugin>
  153.             <plugin>
  154.                 <groupId>org.springframework.boot</groupId>
  155.                 <artifactId>spring-boot-maven-plugin</artifactId>
  156.                 <configuration>
  157.                     <jvmArguments>-Dfile.encoding=UTF -8</jvmArguments>
  158.                 </configuration>
  159.                 <executions>
  160.                     <execution>
  161.                         <goals>
  162.                             <goal>repackage</goal>
  163.                         </goals>
  164.                     </execution>
  165.                 </executions>
  166.             </plugin>
  167.             <plugin>
  168.                 <groupId>org.apache.maven.plugins</groupId>
  169.                 <artifactId>maven-war-plugin</artifactId>
  170.                 <version> 2.6</version>
  171.                 <configuration>
  172.                     <failOnMissingWebXml> false</failOnMissingWebXml>
  173.                 </configuration>
  174.             </plugin>
  175.         </plugins>
  176.         <resources>
  177.             <resource>
  178.                 <directory>src/main/resources</directory>
  179.                 <excludes>
  180.                     <exclude>application*.properties</exclude>
  181.                 </excludes>
  182.             </resource>
  183.             <resource>
  184.                 <directory>src/main/webapp</directory>
  185.                 <targetPath>META-INF/resources</targetPath>
  186.                 <includes>
  187.                     < include>** /**</include>
  188.                 </includes>
  189.             </resource>
  190.             <resource>
  191.                 <directory>src/main/resources</directory>
  192.                 <filtering>true</filtering>
  193.                 <includes>
  194.                     <include>application.properties</include>
  195.                 </includes>
  196.             </resource>
  197.         </resources>
  198.     </build>
  199. </project>


建表语句:


   
  1. CREATE TABLE `t_stock` (
  2.   `stock_id` int( 16) NOT  NULL AUTO_INCREMENT,
  3.   `stock` int( 6DEFAULT  NULL,
  4.   `product_id` int( 16) NOT  NULL,
  5.   PRIMARY KEY (`stock_id`)
  6. ) ;

application.properties


   
  1. spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
  2. spring.datasource.driverClassName=com.mysql.jdbc.Driver
  3. spring.datasource.url=jdbc:mysql: //192.168.56.101:3306/stock?useUnicode=true&characterEncoding=utf-8&useSSL=false
  4. spring.datasource.username=stock
  5. spring.datasource.password= 111111
  6. spring.datasource.initialize= false
  7. spring.redis.database= 0  
  8. spring.redis.host= 192.168 .56 .101
  9. spring.redis.port= 6379
  10. spring.redis.password= 111111
  11. spring.redis.pool.max-active= 10  
  12. spring.redis.pool.max-wait= -1  
  13. spring.redis.pool.max-idle= 10 
  14. spring.redis.pool.min-idle= 0  
  15. spring.redis.timeout= 1000
  16. #tomcat settings
  17. server.port= 8081
  18. server.tomcat.maxConnections= 300
  19. server.tomcat.maxThreads= 300
  20. server.tomcat.uriEncoding=UTF -8
  21. server.tomcat.maxThreads= 300
  22. server.tomcat.minSpareThreads= 150
  23. server.connectionTimeout= 20000
  24. server.tomcat.maxHttpPostSize= 0
  25. server.tomcat.acceptCount= 300
  26. #Dubbo provider configuration
  27. dubbo.protocol.id=dubbo
  28. dubbo.protocol.name=dubbo
  29. dubbo.application.name=seata-stock-service
  30. dubbo.application.id=seata-stock-service
  31. dubbo.registry.protocol=dubbo
  32. dubbo.registry.address=nacos: //192.168.56.101:8848
  33. dubbo.protocol.name=dubbo
  34. dubbo.protocol.port= 20981
  35. dubbo.protocol.threads= 2000
  36. dubbo.protocol.queues= 1000
  37. dubbo.protocol.threadpool=cached
  38. dubbo.provider.retries= 3
  39. dubbo.provider.threadpool=cached
  40. dubbo.provider.threads= 2000
  41. dubbo.provider.connections= 2000
  42. dubbo.provider.acceptes= 0
  43. dubbo.provider.executes= 0
  44. dubbo.consumer.actives= 0
  45. dubbo.scan.base-packages=org.sky.stock.service.dubbo
  46. logging.config=classpath:log4j2.xml

它的registry.conf和seata-product-service中的registry.conf内容完全一模一样,此处就不再重复了。可以看到它是另一个dubbo provider实例,它会运行在20981端口,同时请注意它的dubbo.application.name,和seata-product-service是不同的。

DruidConfig.java


   
  1. package org.sky.stock.config;
  2. import javax.sql.DataSource;
  3. import org.springframework.beans.factory.annotation.Value;
  4. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  5. import org.springframework.boot.context.properties.ConfigurationProperties;
  6. import org.springframework.boot.web.servlet.FilterRegistrationBean;
  7. import org.springframework.boot.web.servlet.ServletRegistrationBean;
  8. import org.springframework.context.annotation.Bean;
  9. import org.springframework.context.annotation.Configuration;
  10. import org.springframework.context.annotation.Primary;
  11. import org.springframework.jdbc.core.JdbcTemplate;
  12. import org.springframework.jdbc.datasource.DataSourceTransactionManager;
  13. import com.alibaba.druid.pool.DruidDataSource;
  14. import com.alibaba.druid.support.http.StatViewServlet;
  15. import com.alibaba.druid.support.http.WebStatFilter;
  16. import io.seata.rm.datasource.DataSourceProxy;
  17. import io.seata.spring.annotation.GlobalTransactionScanner;
  18. @Configuration
  19. public  class DruidConfig {
  20.     @Bean
  21.     @ConfigurationProperties(prefix =  "spring.datasource")
  22.      public DruidDataSource druidDataSource() {
  23.          return  new DruidDataSource();
  24.     }
  25.      /**
  26.      * init datasource proxy
  27.      * 
  28.      * @Param: druidDataSource datasource bean instance
  29.      * @Return: DataSourceProxy datasource proxy
  30.      */
  31.     @Bean
  32.      public DataSourceProxy dataSourceProxy(DruidDataSource druidDataSource) {
  33.          return  new DataSourceProxy(druidDataSource);
  34.     }
  35.     @Bean
  36.      public DataSourceTransactionManager transactionManager(DataSourceProxy dataSourceProxy) {
  37.          return  new DataSourceTransactionManager(dataSourceProxy);
  38.     }
  39.      /**
  40.      * init jdbc template by using the dataSourceProxy
  41.      * 
  42.      * @Return: JdbcTemplate
  43.      */
  44.     @Bean
  45.      public JdbcTemplate dataSource(DataSourceProxy dataSourceProxy) {
  46.          return  new JdbcTemplate(dataSourceProxy);
  47.     }
  48.      /**
  49.      * init global transaction scanner
  50.      *
  51.      * @Return: GlobalTransactionScanner
  52.      */
  53.     @Bean
  54.      public GlobalTransactionScanner globalTransactionScanner() {
  55.          return  new GlobalTransactionScanner( "seata-stock-service""demo-tx-grp");
  56.     }

可以看到此处的GlobalTransactionScanner的第一个参数是贴合着dubbo.application.name的。

StockDAO.java


   
  1. package org.sky.stock.dao;
  2. import org.sky. exception.DemoRpcRunTimeException;
  3. public  interface StockDAO {
  4.      public void addNewStock(long productId, int stock) throws DemoRpcRunTimeException;
  5. }

StockDAOImpl.java


   
  1. package org.sky.stock.dao;
  2. import javax.annotation.Resource;
  3. import org.sky.dao.BaseDAO;
  4. import org.sky. exception.DemoRpcRunTimeException;
  5. import org.springframework.jdbc.core.JdbcTemplate;
  6. import org.springframework.stereotype.Component;
  7. @Component
  8. public  class StockDAOImpl extends BaseDAO implements StockDAO {
  9.     @Resource
  10.      private JdbcTemplate jdbcTemplate;
  11.     @Override
  12.      public void addNewStock(long productId, int stock) throws DemoRpcRunTimeException {
  13.         String prodSql =  "insert into t_stock(product_id,stock)values(?,?)";
  14.          try {
  15.             jdbcTemplate.update(prodSql, productId, stock);
  16.         }  catch ( Exception e) {
  17.              throw  new DemoRpcRunTimeException(e.getMessage(), e);
  18.         }
  19.     }
  20. }

StockBizServiceImpl.java


   
  1. package org.sky.stock.service.biz;
  2. import org.sky. exception.DemoRpcRunTimeException;
  3. import org.sky.service.BaseService;
  4. import org.sky.stock.dao.StockDAO;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.stereotype.Service;
  7. @Service
  8. public  class StockBizServiceImpl extends BaseService implements StockBizService {
  9.     @Autowired
  10.      private StockDAO stockDAO;
  11.     @Override
  12.      public void addStock(long productId, int stock) throws DemoRpcRunTimeException {
  13.          try {
  14.             stockDAO.addNewStock(productId, stock);
  15.         }  catch ( Exception e) {
  16.              throw  new DemoRpcRunTimeException( "error occured on Biz Service Side: " + e.getMessage(), e);
  17.         }
  18.     }
  19. }

StockDubboServiceImpl.java


   
  1. package org.sky.stock.service.dubbo;
  2. import org.apache.dubbo.config.annotation.Service;
  3. import org.sky. exception.DemoRpcRunTimeException;
  4. import org.sky.service.BaseService;
  5. import org.sky.stock.service.biz.StockBizService;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. @Service(version =  "1.0.0", interfaceClass = StockDubboService.class, timeout =  30000,loadbalance =  "roundrobin")
  8. public  class StockDubboServiceImpl extends BaseService implements StockDubboService {
  9.     @Autowired
  10.      private StockBizService stockBizService;
  11.     @Override
  12.      public void addStock(long productId, int stock) throws DemoRpcRunTimeException {
  13.          try {
  14.             stockBizService.addStock(productId, stock);
  15.             logger.info( "======>insert into t_stock with successful\n data:\n   productid: " + productId
  16.                     +  "\n   stock: " + stock);
  17.         }  catch ( Exception e) {
  18.             logger.error( "error occured on insert stock with productid->: " + productId +  " and stock->" + stock
  19.                     + e.getMessage(), e);
  20.              throw  new DemoRpcRunTimeException( "error occured on insert stock with productid->: " + productId
  21.                     +  " and stock->" + stock + e.getMessage(), e);
  22.         }
  23.     }
  24. }

启动用Application.java


   
  1. package org.sky.stock;
  2. import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  5. import org.springframework.context.annotation.ComponentScan;
  6. import org.springframework.transaction.annotation.EnableTransactionManagement;
  7. @EnableDubbo
  8. @EnableAutoConfiguration
  9. @ComponentScan(basePackages = {  "org.sky.stock" })
  10. public  class Application {
  11.      public  static void main(String[] args) {
  12.         SpringApplication.run(Application.class, args);
  13.     }
  14. }

同样,我们把它启动起来。

seata-demo-consumer工程

这个就是一个纯 spring boot controller工程了,它给我们提供一个人机界面,我们可以通过它post一个json请求以达到后端两个个不同的dubbo provider service向两个不同的数据库插入数据,如果有任意错误也可以进行全部的回滚。

pom.xml


   
  1. <project xmlns= "http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion> 4.0 .0</modelVersion>
  5.     <groupId>org.sky.demo</groupId>
  6.     <artifactId>seata-demo-consumer</artifactId>
  7.     <version> 0.0 .1-SNAPSHOT</version>
  8.     < parent>
  9.         <groupId>org.sky.demo</groupId>
  10.         <artifactId>nacos- parent</artifactId>
  11.         <version> 0.0 .1-SNAPSHOT</version>
  12.     </ parent>
  13.     <packaging>war</packaging>
  14.     <description>Demo project Dubbo+Nacos+Seata</description>
  15.     <dependencies>
  16.         <dependency>
  17.             <groupId>org.apache.dubbo</groupId>
  18.             <artifactId>dubbo</artifactId>
  19.         </dependency>
  20.         <dependency>
  21.             <groupId>org.apache.curator</groupId>
  22.             <artifactId>curator-recipes</artifactId>
  23.         </dependency>
  24.         <dependency>
  25.             <groupId>org.springframework.boot</groupId>
  26.             <artifactId>spring-boot-starter-test</artifactId>
  27.             <scope>test</scope>
  28.         </dependency>
  29.         <dependency>
  30.             <groupId>org.spockframework</groupId>
  31.             <artifactId>spock-core</artifactId>
  32.             <scope>test</scope>
  33.         </dependency>
  34.         <dependency>
  35.             <groupId>org.spockframework</groupId>
  36.             <artifactId>spock-spring</artifactId>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>org.springframework.boot</groupId>
  40.             <artifactId>spring-boot-configuration-processor</artifactId>
  41.             <optional> true</optional>
  42.         </dependency>
  43.         <dependency>
  44.             <groupId>org.springframework.boot</groupId>
  45.             <artifactId>spring-boot-starter-log4j2</artifactId>
  46.         </dependency>
  47.         <dependency>
  48.             <groupId>org.springframework.boot</groupId>
  49.             <artifactId>spring-boot-starter-web</artifactId>
  50.             <exclusions>
  51.                 <exclusion>
  52.                     <groupId>org.springframework.boot</groupId>
  53.                     <artifactId>spring-boot-starter-logging</artifactId>
  54.                 </exclusion>
  55.                 <exclusion>
  56.                     <groupId>org.springframework.boot</groupId>
  57.                     <artifactId>spring-boot-starter-tomcat</artifactId>
  58.                 </exclusion>
  59.             </exclusions>
  60.         </dependency>
  61.         <dependency>
  62.             <groupId>org.springframework.boot</groupId>
  63.             <artifactId>spring-boot-starter-tomcat</artifactId>
  64.             <scope>compile</scope>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>org.aspectj</groupId>
  68.             <artifactId>aspectjweaver</artifactId>
  69.         </dependency>
  70.         <dependency>
  71.             <groupId>com.lmax</groupId>
  72.             <artifactId>disruptor</artifactId>
  73.         </dependency>
  74.         <dependency>
  75.             <groupId>redis.clients</groupId>
  76.             <artifactId>jedis</artifactId>
  77.         </dependency>
  78.         <dependency>
  79.             <groupId>com.google.guava</groupId>
  80.             <artifactId>guava</artifactId>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>com.alibaba</groupId>
  84.             <artifactId>fastjson</artifactId>
  85.         </dependency>
  86.         <!-- Dubbo Registry Nacos -->
  87.         <dependency>
  88.             <groupId>org.apache.dubbo</groupId>
  89.             <artifactId>dubbo-registry-nacos</artifactId>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>com.alibaba.nacos</groupId>
  93.             <artifactId>nacos-client</artifactId>
  94.         </dependency>
  95.         <dependency>
  96.             <groupId>org.sky.demo</groupId>
  97.             <artifactId>skycommon</artifactId>
  98.             <version>${skycommon.version}</version>
  99.         </dependency>
  100.         <dependency>
  101.             <groupId>io.seata</groupId>
  102.             <artifactId>seata-all</artifactId>
  103.         </dependency>
  104.         <dependency>
  105.             <groupId>com.alibaba.boot</groupId>
  106.             <artifactId>nacos-config-spring-boot-starter</artifactId>
  107.             <exclusions>
  108.                 <exclusion>
  109.                     <artifactId>nacos-client</artifactId>
  110.                     <groupId>com.alibaba.nacos</groupId>
  111.                 </exclusion>
  112.             </exclusions>
  113.         </dependency>
  114.         <dependency>
  115.             <groupId>org.apache.curator</groupId>
  116.             <artifactId>curator-framework</artifactId>
  117.         </dependency>
  118.         <dependency>
  119.             <groupId>org.apache.curator</groupId>
  120.             <artifactId>curator-recipes</artifactId>
  121.         </dependency>
  122.         <dependency>
  123.             <groupId>io.netty</groupId>
  124.             <artifactId>netty-all</artifactId>
  125.         </dependency>
  126.         <dependency>
  127.             <groupId>org.projectlombok</groupId>
  128.             <artifactId>lombok</artifactId>
  129.         </dependency>
  130.         <dependency>
  131.             <groupId>javax.servlet</groupId>
  132.             <artifactId>javax.servlet-api</artifactId>
  133.             <version>${javax.servlet.version}</version>
  134.             <scope>provided</scope>
  135.         </dependency>
  136.     </dependencies>
  137.     <build>
  138.         <sourceDirectory>src/main/java</sourceDirectory>
  139.         <testSourceDirectory>src/test/java</testSourceDirectory>
  140.         <plugins>
  141.             <plugin>
  142.                 <groupId>org.springframework.boot</groupId>
  143.                 <artifactId>spring-boot-maven-plugin</artifactId>
  144.             </plugin>
  145.         </plugins>
  146.         <resources>
  147.             <resource>
  148.                 <directory>src/main/resources</directory>
  149.             </resource>
  150.             <resource>
  151.                 <directory>src/main/webapp</directory>
  152.                 <targetPath>META-INF/resources</targetPath>
  153.                 <includes>
  154.                     < include>** /**</include>
  155.                 </includes>
  156.             </resource>
  157.             <resource>
  158.                 <directory>src/main/resources</directory>
  159.                 <filtering>true</filtering>
  160.                 <includes>
  161.                     <include>application.properties</include>
  162.                     <include>application-${profileActive}.properties</include>
  163.                 </includes>
  164.             </resource>
  165.         </resources>
  166.     </build>
  167. </project>

application.properties

此处的application.properties相对provider工程来说会比较简单,它也不需要数据库连接信息。


   
  1. server.port= 8082
  2. server.tomcat.maxConnections= 300
  3. server.tomcat.maxThreads= 300
  4. server.tomcat.uriEncoding=UTF -8
  5. server.tomcat.maxThreads= 300
  6. server.tomcat.minSpareThreads= 150
  7. server.connectionTimeout= 20000
  8. server.tomcat.maxHttpPostSize= 0
  9. server.tomcat.acceptCount= 300
  10. #Dubbo provider configuration
  11. dubbo.protocol.id=dubbo
  12. dubbo.protocol.name=dubbo
  13. dubbo.application.name=demo-seata-consumer
  14. dubbo.application.id=demo-seata-consumer
  15. dubbo.registry.protocol=dubbo
  16. dubbo.registry.address=nacos: //192.168.56.101:8848
  17. #dubbo.consumer.time=120000
  18. logging.config=classpath:log4j2.xml

但是一样,它也需要连接nacos来Reference dubbo provider的应用。我们接下来看它的基于于spring boot的自动装配,SeataAutoConfig.java,由于它根本不需要连接什么DB,因此它里面只有一个GlobalTransactionScanner。

SeataAutoConfig.java


   
  1. package org.sky.seatademo.config;
  2. import io.seata.spring.annotation.GlobalTransactionScanner;
  3. import org.springframework.boot.context.properties.ConfigurationProperties;
  4. import org.springframework.context.annotation.Bean;
  5. import org.springframework.context.annotation.Configuration;
  6. @Configuration
  7. public  class SeataAutoConfig {
  8.      /**
  9.      * init global transaction scanner
  10.      *
  11.      * @Return: GlobalTransactionScanner
  12.      */
  13.     @Bean
  14.      public GlobalTransactionScanner globalTransactionScanner() {
  15.          return  new GlobalTransactionScanner( "demo-seata-consumer""demo-tx-grp");
  16.     }
  17. }

注意:这边的GlobalTransactionScanner中的第一个参数,这个参数是seata-demo-consumer的dubbo.application.name,同时也是后面我们要生效的Global Transaction的Scope。

来看核心业务逻辑调用:

BusinessDubboServiceImpl.java


   
  1. package org.sky.seatademo.service.biz;
  2. import org.apache.dubbo.config.annotation.Reference;
  3. import org.sky. exception.DemoRpcRunTimeException;
  4. import org.sky.product.service.dubbo.ProductDubboService;
  5. import org.sky.seatademo.vo.SeataProductVO;
  6. import org.sky.service.BaseService;
  7. import org.sky.stock.service.dubbo.StockDubboService;
  8. import org.springframework.stereotype.Service;
  9. import io.seata.core.context.RootContext;
  10. import io.seata.spring.annotation.GlobalTransactional;
  11. @Service
  12. public  class BusinessDubboServiceImpl extends BaseService implements BusinessDubboService {
  13.     @Reference(version =  "1.0.0")
  14.      private ProductDubboService productDubboService;
  15.     @Reference(version =  "1.0.0")
  16.      private StockDubboService stockDubboService;
  17.     @Override
  18.     @GlobalTransactional(timeoutMills =  300000, name =  "seata-at-service")
  19.      public SeataProductVO addProductAndStock(SeataProductVO vo) throws DemoRpcRunTimeException {
  20.         SeataProductVO rtnProduct =  new SeataProductVO();
  21.          try {
  22.              // logger.info("======>start global transaction: " + RootContext.getXID());
  23.             long prodId = productDubboService.addProduct(vo.getProductName());
  24.             stockDubboService.addStock(prodId, vo.getStock());
  25.             rtnProduct.setProductId(prodId);
  26.             rtnProduct.setProductName(vo.getProductName());
  27.             rtnProduct.setStock(vo.getStock());
  28.              if (vo.getProductName().equalsIgnoreCase( "donny")) {
  29.                  throw  new  Exception( "Mk Thru The Exception To Force Rollback");
  30.             }  else {
  31.                  return rtnProduct;
  32.             }
  33.         }  catch (
  34.          Exception e) {
  35.             logger.error( "error occured on dubbo BusinessService side: " + e.getMessage(), e);
  36.              throw  new DemoRpcRunTimeException( "error occured on dubbo BusinessService side: " + e.getMessage(), e);
  37.         }
  38.     }
  39.     @Override
  40.     @GlobalTransactional(timeoutMills =  120000, name =  "demo-seata-consumer")
  41.      public SeataProductVO addProductAndStockFailed(SeataProductVO vo) throws DemoRpcRunTimeException {
  42.         SeataProductVO rtnProduct =  new SeataProductVO();
  43.          try {
  44.             logger.info( "======>start global transaction: " + RootContext.getXID());
  45.             long prodId = productDubboService.addProduct(vo.getProductName());
  46.             stockDubboService.addStock(prodId, vo.getStock());
  47.             rtnProduct.setProductId(prodId);
  48.             rtnProduct.setProductName(vo.getProductName());
  49.             rtnProduct.setStock(vo.getStock());
  50.              throw  new  Exception( "Mk throw the exception to enforce rollback all transaction");
  51.         }  catch ( Exception e) {
  52.             logger.error( "error occured on dubbo BusinessService side: " + e.getMessage(), e);
  53.              throw  new DemoRpcRunTimeException( "error occured on dubbo BusinessService side: " + e.getMessage(), e);
  54.         }
  55.     }
  56. }

看到没有,首先:

它会@Reference两个dubbo provider的引用,然后在一个business方法内,它开始“切面”事务了,这边事务的范围正是用的这个name="demo-seata-consumer”来标记的。

同时,我们在这个Service中有一段逻辑,即当productName为donny时,那么故意我们会抛出一个错误来以迫使全局事务回滚!

必竟donny是一个人,它不是一个“合格”的商品!

值的高度注意的一点 ,为什么我说截止目前为止网上的例子都是跑不通的呢?

是因为,SEATA使用到的mysql里的几个用于作持久化作用的表的transaction_name和group_name字段都是32位长度的字符,而那些例子里的application_name和group_name都大于了32位,SEATA运行时就已经报错了更不要说后面还能把事务给做对了呢。

对于人机交五用界面用的SeataDemoController.java


   
  1. package org.sky.seatademo.controller;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import org.apache.dubbo.config.annotation.Reference;
  5. import org.sky.controller.BaseController;
  6. import org.sky.seatademo.service.biz.BusinessDubboService;
  7. import org.sky.seatademo.vo.SeataProductVO;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.http.HttpHeaders;
  10. import org.springframework.http.HttpStatus;
  11. import org.springframework.http.MediaType;
  12. import org.springframework.http.ResponseEntity;
  13. import org.springframework.web.bind.annotation.PostMapping;
  14. import org.springframework.web.bind.annotation.RequestBody;
  15. import org.springframework.web.bind.annotation.RequestMapping;
  16. import org.springframework.web.bind.annotation.RestController;
  17. import com.alibaba.fastjson.JSON;
  18. import com.alibaba.fastjson.JSONObject;
  19. @RestController
  20. @RequestMapping( "seatademo")
  21. public  class SeataDemoController extends BaseController {
  22.     @Autowired
  23.      private BusinessDubboService businessDubboService;
  24.     @PostMapping(value =  "/addSeataProduct", produces =  "application/json")
  25.      public ResponseEntity<String> addSeataProduct(@RequestBody String params) throws  Exception {
  26.         ResponseEntity<String> response =  null;
  27.         String returnResultStr;
  28.         HttpHeaders headers =  new HttpHeaders();
  29.         headers.setContentType(MediaType.APPLICATION_JSON_UTF8);
  30.         Map<String, Object> result =  new HashMap<>();
  31.          try {
  32.             JSONObject requestJsonObj = JSON.parseObject(params);
  33.             SeataProductVO inputProductPara = getSeataProductFromJson(requestJsonObj);
  34.             SeataProductVO returnData = businessDubboService.addProductAndStock(inputProductPara);
  35.             result.put( "code", HttpStatus.OK.value());
  36.             result.put( "message""add a new product successfully");
  37.             result.put( "productid", returnData.getProductId());
  38.             result.put( "productname", returnData.getProductName());
  39.             result.put( "stock", returnData.getStock());
  40.             returnResultStr = JSON.toJSONString(result);
  41.             response =  new ResponseEntity<>(returnResultStr, headers, HttpStatus.OK);
  42.         }  catch ( Exception e) {
  43.             logger.error( "add a new product with error: " + e.getMessage(), e);
  44.             result.put( "message""add a new product with error: " + e.getMessage());
  45.             returnResultStr = JSON.toJSONString(result);
  46.             response =  new ResponseEntity<>(returnResultStr, headers, HttpStatus.EXPECTATION_FAILED);
  47.         }
  48.          return response;
  49.     }
  50.     @PostMapping(value =  "/addSeataProductFailed", produces =  "application/json")
  51.      public ResponseEntity<String> addSeataProductFailed(@RequestBody String params) throws  Exception {
  52.         ResponseEntity<String> response =  null;
  53.         String returnResultStr;
  54.         HttpHeaders headers =  new HttpHeaders();
  55.         headers.setContentType(MediaType.APPLICATION_JSON_UTF8);
  56.         Map<String, Object> result =  new HashMap<>();
  57.          try {
  58.             JSONObject requestJsonObj = JSON.parseObject(params);
  59.             SeataProductVO inputProductPara = getSeataProductFromJson(requestJsonObj);
  60.             SeataProductVO returnData = businessDubboService.addProductAndStockFailed(inputProductPara);
  61.             result.put( "code", HttpStatus.OK.value());
  62.             result.put( "message""add a new product successfully");
  63.             result.put( "productid", returnData.getProductId());
  64.             result.put( "productname", returnData.getProductName());
  65.             result.put( "stock", returnData.getStock());
  66.             returnResultStr = JSON.toJSONString(result);
  67.             response =  new ResponseEntity<>(returnResultStr, headers, HttpStatus.OK);
  68.         }  catch ( Exception e) {
  69.             logger.error( "add a new product with error: " + e.getMessage(), e);
  70.             result.put( "message""add a new product with error: " + e.getMessage());
  71.             returnResultStr = JSON.toJSONString(result);
  72.             response =  new ResponseEntity<>(returnResultStr, headers, HttpStatus.EXPECTATION_FAILED);
  73.         }
  74.          return response;
  75.     }
  76. }

然后就是启动用Application.java


   
  1. package org.sky.seatademo;
  2. import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  5. import org.springframework.boot.web.servlet.ServletComponentScan;
  6. import org.springframework.context.annotation.ComponentScan;
  7. import org.springframework.transaction.annotation.EnableTransactionManagement;
  8. @EnableDubbo
  9. @ServletComponentScan
  10. @EnableAutoConfiguration
  11. @ComponentScan(basePackages = {  "org.sky.seatademo" })
  12. public  class Application {
  13.      public  static void main(String[] args) {
  14.         SpringApplication.run(Application.class, args);
  15.     }
  16. }

这个工程我们把它做成了可以用于在tomcat里部署的war包的形式,因为有不少读者习惯于用tomcat来部署,此处用于演示如何把springboot的工程做成war。

我们把它也启动起来

这是seata server后端的日志显示

nacos中对于seatar的配置的显示 

测试正反两个实例

我们先post一段正常的商品信息


   
  1. {
  2.      "productname" :  "apple",
  3.      "stock" :  10000
  4. }

看上面,我们可以看到TM在进行全局事务的commit。

我们再来提交一个“不正常”的请求


   
  1. {
  2.      "productname" :  "donny",
  3.      "stock" :  10000
  4. }

我们可以看到它触发了逻辑抛错

分别观察两个provider的后端

看,TM协调下,RM里的相应的远程Service进行了rollback。

再来看数据库端

刚才的那条叫donny的“劣质商品”没有被插进去,它被SEATA给回滚了。

我们接下来要开始详细讲述基于springboot+dubbo+nacos+seata如何实现TCC事务的实现,我们会完成一个跨行转帐的实例。

基于TCC的分布式事务详解

 

前面我们讲述了SEATA的基于2PC的AT事务实战篇。在下篇中我们将会非常详细的描述一下如何利用SEATA来实现TCC事务补偿机制的原理。

我们要使用的TCC例子-跨行转款问题

还记得我们在前面曾经出现过这么一个例子用于详细描述TCC描述事务的原理吧?

现在我们就会围绕着这个例子来进一步用代码演示它。所有代码我已经上传到了我的GIT上了,地址在这:https://github.com/mkyuangithub/mkyuangithub

我们假设有这么一个业务场景:

你的公司是一家叫moneyking的第三方支付公司,连接着几个主要的银行支付渠道;

现在有一个帐户A要通过工行向另一个位于招商银行的B帐户转帐;

 

转帐要么成功要么失败。

于是我们结合着例子创建了3个项目:

  1. tcc-bank-cmb

  2. tcc-bank-icbc

  3. tcc-money-king

tcc-bank-cmb和tcc-bank-icbc都是dubbo provider,它们分别连接着自己的数据库(不同的url)。

两个不同的schema,一个schema叫bank_icbc,一个schema叫bank_cmb,每个schema中的表结构相同。

我们下面给出相关的建表语句,每个业务表内的undo_log请各位看前面篇幅中所介绍的内容(内含有undo_log表建表语句)。


   
  1. CREATE TABLE `bank_account` (
  2.   `account_id` varchar( 32) COLLATE utf8_bin NOT  NULL,
  3.   `amount` double( 11, 2DEFAULT  '0.00',
  4.   `freezed_amount` double( 11, 2DEFAULT  '0.00',
  5.   PRIMARY KEY (`account_id`)
  6. ) ENGINE=InnoDB  DEFAULT CHARSET=utf8 COLLATE=utf8_bin;

工程详细讲解tcc-bank-icbc和tcc-bank-cmb分别连接着这2个schema。而tcc-money-king就是一个consumer,它来模拟你所在的那家第三方支付公司,所有的客户都是通过tcc-money-king来进行转帐的。

如前面内容一样,我们在讲述具体的代码前先要把tcc如何在SEATA中实现的一些个坑给“填了”。

全局事务

和SEATA中的AT模式不同TCC的全局事务不需要你设置datasourceProxy代理,它只需要把事务范围和事务组申明好就可以了。

我们这边的事务组如下所示:

  • 事务组:demo-tx-grp

  • 事务边界:tcc-bank-sample,此处这个边界就是指的是tcc-money-king项目的dubbo.application.name。

在我们的tcc-money-king中有一个业务方法,在这个业务方法中只需要如此使用@GlobalTransaction申明即可启用SEATA的tcc机制。

Spring Boot工程中不可以使用注解来申明dubbo的坑

没错!截止发稿稿为止seata-1.0GAtcc不支持@Service, @Reference这样注解方式的dubbo发布,它虽然不会出错可是会使得整个tcc事务失效(AT模式中是完全可以使用注解模式的,TCC模式目前还不支持),只有那些使用普通的spring的.xml配置来申明的provider和reference才能享受tcc的“盛餐”。

那么这对于我们的spring boot工程来说岂不是很“恶心”的一件事?不要急,笔者已经探索出来了一条“熊掌与鱼兼得”法,即混用springboot和普通spring .xml文件配置。

即,只对dubbo bean进行.xml配置而对其它我们坚持可以使用spring boot的全注解方法来搭建整个项目的框架,见下例。

这边除了dubbo和一个比较特殊的transactionTemplate需要使用.xml,其它我们照样可以使用spring boot的全注解配置yyaa,只需要在我们的XxxConfig文件内写上这么一句即可:


   
  1. @Configuration
  2. @ImportResource(locations = {  "spring/spring-bean.xml""spring/dubbo-bean.xml" })
  3. public  class TccBankConfig {

然后在你使用到的地方比如说我们在tcc-money-king中使用了.xml文件配置一个dubbo的引用,那么此时你只需要在你要Reference的Service方法内@Autowired一下即可,如下例:

 

开始讲解所有工程中的代码

整个tcc它围绕着try, confirm, cancel这3个方法来运作的。这使得你需要使用tcc事务的话就必须对原有代码有侵入性。可是SEATA在这方面做的很好,它j通过远程调用、AOP来做的全局事务切入进而实现这一过程的。

所以在seata tcc编程中最最重要的有这么几个元素:

Global Transactional

Transaction Template

Transaction Manager

下面我们就以实例来感受seata tcc是如何做到尽量少侵入业务代码、又能做到性能最优、同时做到数据的最终一致性吧

tcc-bank-icbc

pom.xml


   
  1. <project xmlns= "http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion> 4.0 .0</modelVersion>
  5.     < parent>
  6.         <groupId>org.sky.demo</groupId>
  7.         <artifactId>nacos- parent</artifactId>
  8.         <version> 0.0 .1-SNAPSHOT</version>
  9.     </ parent>
  10.     <groupId>org.sky.demo</groupId>
  11.     <artifactId>tcc-bank-icbc</artifactId>
  12.     <version> 0.0 .1</version>
  13.     <name>tcc-bank-icbc</name>
  14.     <description>Demo project Dubbo+Nacos+SeataTCC</description>
  15.     <properties>
  16.         <project.reporting.outputEncoding>UTF -8</project.reporting.outputEncoding>
  17.     </properties>
  18.     <dependencies>
  19.         <dependency>
  20.             <groupId>org.mybatis</groupId>
  21.             <artifactId>mybatis</artifactId>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>org.mybatis</groupId>
  25.             <artifactId>mybatis-spring</artifactId>
  26.         </dependency>
  27.         <dependency>
  28.             <groupId>org.springframework.boot</groupId>
  29.             <artifactId>spring-boot-starter-jdbc</artifactId>
  30.             <exclusions>
  31.                 <exclusion>
  32.                     <groupId>org.springframework.boot</groupId>
  33.                     <artifactId>spring-boot-starter-logging</artifactId>
  34.                 </exclusion>
  35.             </exclusions>
  36.         </dependency>
  37.         <dependency>
  38.             <groupId>org.apache.dubbo</groupId>
  39.             <artifactId>dubbo</artifactId>
  40.         </dependency>
  41.         <dependency>
  42.             <groupId>org.apache.curator</groupId>
  43.             <artifactId>curator-framework</artifactId>
  44.         </dependency>
  45.         <dependency>
  46.             <groupId>org.apache.curator</groupId>
  47.             <artifactId>curator-recipes</artifactId>
  48.         </dependency>
  49.         <dependency>
  50.             <groupId>mysql</groupId>
  51.             <artifactId>mysql-connector-java</artifactId>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>com.alibaba</groupId>
  55.             <artifactId>druid</artifactId>
  56.         </dependency>
  57.         <dependency>
  58.             <groupId>org.springframework.boot</groupId>
  59.             <artifactId>spring-boot-starter-test</artifactId>
  60.             <scope>test</scope>
  61.         </dependency>
  62.         <dependency>
  63.             <groupId>org.spockframework</groupId>
  64.             <artifactId>spock-core</artifactId>
  65.             <scope>test</scope>
  66.         </dependency>
  67.         <dependency>
  68.             <groupId>org.spockframework</groupId>
  69.             <artifactId>spock-spring</artifactId>
  70.         </dependency>
  71.         <dependency>
  72.             <groupId>org.springframework.boot</groupId>
  73.             <artifactId>spring-boot-configuration-processor</artifactId>
  74.             <optional> true</optional>
  75.         </dependency>
  76.         <dependency>
  77.             <groupId>org.springframework.boot</groupId>
  78.             <artifactId>spring-boot-starter-log4j2</artifactId>
  79.         </dependency>
  80.         <dependency>
  81.             <groupId>org.springframework.boot</groupId>
  82.             <artifactId>spring-boot-starter-web</artifactId>
  83.             <exclusions>
  84.                 <exclusion>
  85.                     <groupId>org.springframework.boot</groupId>
  86.                     <artifactId>spring-boot-starter-logging</artifactId>
  87.                 </exclusion>
  88.                 <exclusion>
  89.                     <groupId>org.springframework.boot</groupId>
  90.                     <artifactId>spring-boot-starter-tomcat</artifactId>
  91.                 </exclusion>
  92.             </exclusions>
  93.         </dependency>
  94.         <dependency>
  95.             <groupId>org.aspectj</groupId>
  96.             <artifactId>aspectjweaver</artifactId>
  97.         </dependency>
  98.         <dependency>
  99.             <groupId>com.lmax</groupId>
  100.             <artifactId>disruptor</artifactId>
  101.         </dependency>
  102.         <dependency>
  103.             <groupId>redis.clients</groupId>
  104.             <artifactId>jedis</artifactId>
  105.         </dependency>
  106.         <dependency>
  107.             <groupId>com.google.guava</groupId>
  108.             <artifactId>guava</artifactId>
  109.         </dependency>
  110.         <dependency>
  111.             <groupId>com.alibaba</groupId>
  112.             <artifactId>fastjson</artifactId>
  113.         </dependency>
  114.         <!-- Dubbo Registry Nacos -->
  115.         <dependency>
  116.             <groupId>org.apache.dubbo</groupId>
  117.             <artifactId>dubbo-registry-nacos</artifactId>
  118.         </dependency>
  119.         <dependency>
  120.             <groupId>com.alibaba.nacos</groupId>
  121.             <artifactId>nacos-client</artifactId>
  122.         </dependency>
  123.         <dependency>
  124.             <groupId>org.sky.demo</groupId>
  125.             <artifactId>skycommon</artifactId>
  126.             <version>${skycommon.version}</version>
  127.         </dependency>
  128.         <dependency>
  129.             <groupId>io.seata</groupId>
  130.             <artifactId>seata-all</artifactId>
  131.         </dependency>
  132.         <dependency>
  133.             <groupId>com.alibaba.boot</groupId>
  134.             <artifactId>nacos-config-spring-boot-starter</artifactId>
  135.             <exclusions>
  136.                 <exclusion>
  137.                     <artifactId>nacos-client</artifactId>
  138.                     <groupId>com.alibaba.nacos</groupId>
  139.                 </exclusion>
  140.             </exclusions>
  141.         </dependency>
  142.         <dependency>
  143.             <groupId>io.netty</groupId>
  144.             <artifactId>netty-all</artifactId>
  145.         </dependency>
  146.         <dependency>
  147.             <groupId>org.projectlombok</groupId>
  148.             <artifactId>lombok</artifactId>
  149.         </dependency>
  150.     </dependencies>
  151.     <build>
  152.         <finalName>${project.artifactId}</finalName>
  153.         <sourceDirectory>src/main/java</sourceDirectory>
  154.         <testSourceDirectory>src/test/java</testSourceDirectory>
  155.         <plugins>
  156.             <plugin>
  157.                 <groupId>org.apache.maven.plugins</groupId>
  158.                 <artifactId>maven-compiler-plugin</artifactId>
  159.             </plugin>
  160.             <plugin>
  161.                 <groupId>org.springframework.boot</groupId>
  162.                 <artifactId>spring-boot-maven-plugin</artifactId>
  163.                 <configuration>
  164.                     <jvmArguments>-Dfile.encoding=UTF -8</jvmArguments>
  165.                 </configuration>
  166.                 <executions>
  167.                     <execution>
  168.                         <goals>
  169.                             <goal>repackage</goal>
  170.                         </goals>
  171.                     </execution>
  172.                 </executions>
  173.             </plugin>
  174.             <plugin>
  175.                 <groupId>org.apache.maven.plugins</groupId>
  176.                 <artifactId>maven-war-plugin</artifactId>
  177.                 <version> 2.6</version>
  178.                 <configuration>
  179.                     <failOnMissingWebXml> false</failOnMissingWebXml>
  180.                 </configuration>
  181.             </plugin>
  182.         </plugins>
  183.         <resources>
  184.             <resource>
  185.                 <directory>src/main/resources</directory>
  186.                 <excludes>
  187.                     <exclude>application*.properties</exclude>
  188.                 </excludes>
  189.             </resource>
  190.             <resource>
  191.                 <directory>src/main/webapp</directory>
  192.                 <targetPath>META-INF/resources</targetPath>
  193.                 <includes>
  194.                     < include>** /**</include>
  195.                 </includes>
  196.             </resource>
  197.             <resource>
  198.                 <directory>src/main/resources</directory>
  199.                 <filtering>true</filtering>
  200.                 <includes>
  201.                     <include>application.properties</include>
  202.                 </includes>
  203.             </resource>
  204.         </resources>
  205.     </build>
  206. </project>

application.properties


   
  1. spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
  2. spring.datasource.driverClassName=com.mysql.jdbc.Driver
  3. spring.datasource.url=jdbc:mysql: //192.168.56.101:3306/bank_icbc?useUnicode=true&characterEncoding=utf-8&useSSL=false
  4. spring.datasource.username=icbc
  5. spring.datasource.password= 111111
  6. spring.datasource.initialize= false
  7. spring.datasource.initialSize= 5
  8. spring.datasource.minIdle= 5
  9. spring.datasource.maxActive:  20
  10. spring.datasource.maxWait:  30000
  11. spring.datasource.validationQuery=SELECT  1 FROM DUAL
  12. spring.datasource.testWhileIdle= true
  13. spring.datasource.testOnBorrow= false
  14. spring.datasource.testOnReturn= false
  15. spring.datasource.poolPreparedStatements= true
  16. spring.datasource.maxPoolPreparedStatementPerConnectionSize= 128
  17. logging.config=classpath:log4j2.xml

由于我们对于dubbo需要使用.xml文件的方式配置,因此我们的application.properties文件内容相对简单。

TccBankConfig.java


   
  1. package org.sky.tcc.bank.icbc.config;
  2. import org.springframework.boot.context.properties.ConfigurationProperties;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.context.annotation.ImportResource;
  6. import org.springframework.jdbc.core.JdbcTemplate;
  7. import org.springframework.jdbc.datasource.DataSourceTransactionManager;
  8. import com.alibaba.druid.pool.DruidDataSource;
  9. import io.seata.spring.annotation.GlobalTransactionScanner;
  10. @Configuration
  11. @ImportResource(locations = {  "spring/spring-bean.xml""spring/dubbo-bean.xml" })
  12. public  class TccBankConfig {
  13.     @Bean
  14.     @ConfigurationProperties(prefix =  "spring.datasource")
  15.      public DruidDataSource druidDataSource() {
  16.          return  new DruidDataSource();
  17.     }
  18.     @Bean
  19.      public DataSourceTransactionManager transactionManager(DruidDataSource druidDataSource) {
  20.          return  new DataSourceTransactionManager(druidDataSource);
  21.     }
  22.     @Bean
  23.      public JdbcTemplate jdbcTemplate(DruidDataSource druidDataSource) {
  24.          return  new JdbcTemplate(druidDataSource);
  25.     }
  26.     @Bean
  27.      public GlobalTransactionScanner globalTransactionScanner() {
  28.          return  new GlobalTransactionScanner( "tcc-bank-icbc""demo-tx-grp");
  29.     }
  30. }

这个就是我们的全局配置类,在这个配置类内对于datasource,transaction manager, global transactional我们使用的是全注解。

我们在spring/spring-bean.xml文件内申明了transactional template

spring/spring-bean.xml


   
  1. <?xml version= "1.0" encoding= "UTF-8" ?>
  2. <!-- ~ Copyright  1999 -2018 Alibaba Group Holding Ltd. ~ ~ Licensed under 
  3.     the Apache License, Version  2.0 (the  "License"); ~ you may not  use  this  file 
  4.      except  in  compliance  with  the  License. ~  You  may  obtain  a  copy  of  the  License 
  5.      at ~ ~  http:// www. apache. org/ licenses/ LICENSE-2.0 ~ ~  Unless  required  by 
  6.      applicable  law  or  agreed  to  in  writingsoftware ~  distributed  under  the 
  7.      License  is  distributed  on  an " AS  ISBASIS, ~  WITHOUT  WARRANTIES  OR  CONDITIONS 
  8.      OF  ANY  KINDeither  express  or  implied. ~  See  the  License  for  the  specific 
  9.      language  governing  permissions  and ~  limitations  under  the  License. -->
  10. < beans  xmlns=" http:// www. springframework. org/ schema/ beans"
  11.      xmlns: xsi=" http:// www. w3. org/2001/ XMLSchema- instance"
  12.      xmlns: dubbo=" http:// code. alibabatech. com/ schema/ dubbo"
  13.      xsi: schemaLocation=" http:// www. springframework. org/ schema/ beans  http:// www. springframework. org/ schema/ beans/ spring- beans. xsd
  14.         http:// code. alibabatech. com/ schema/ dubbo
  15.         http:// code. alibabatech. com/ schema/ dubbo/ dubbo. xsd"
  16.      default- autowire=" byName">
  17.     < bean  id=" transactionTemplate"
  18.          class=" org. springframework. transaction. support. TransactionTemplate">
  19.         < property  name=" propagationBehaviorName">
  20.             < value> PROPAGATION_REQUIRES_NEW</ value>
  21.         </ property>
  22.         < property  name=" transactionManager">
  23.             < ref  bean=" transactionManager" />
  24.         </ property>
  25.     </ bean>
  26. </ beans>

对于dubbo我们使用的是spring/dubbo-bean.xml来配置的

spring/dubbo-bean.xml


   
  1. <?xml version= "1.0" encoding= "UTF-8" ?>
  2. <!-- ~ Copyright  1999 -2018 Alibaba Group Holding Ltd. ~ ~ Licensed under 
  3.     the Apache License, Version  2.0 (the  "License"); ~ you may not  use  this  file 
  4.      except  in  compliance  with  the  License. ~  You  may  obtain  a  copy  of  the  License 
  5.      at ~ ~  http:// www. apache. org/ licenses/ LICENSE-2.0 ~ ~  Unless  required  by 
  6.      applicable  law  or  agreed  to  in  writingsoftware ~  distributed  under  the 
  7.      License  is  distributed  on  an " AS  ISBASIS, ~  WITHOUT  WARRANTIES  OR  CONDITIONS 
  8.      OF  ANY  KINDeither  express  or  implied. ~  See  the  License  for  the  specific 
  9.      language  governing  permissions  and ~  limitations  under  the  License. -->
  10. < beans  xmlns=" http:// www. springframework. org/ schema/ beans"
  11.      xmlns: xsi=" http:// www. w3. org/2001/ XMLSchema- instance"
  12.      xmlns: dubbo=" http:// code. alibabatech. com/ schema/ dubbo"
  13.      xsi: schemaLocation=" http:// www. springframework. org/ schema/ beans  http:// www. springframework. org/ schema/ beans/ spring- beans. xsd
  14.         http:// code. alibabatech. com/ schema/ dubbo
  15.         http:// code. alibabatech. com/ schema/ dubbo/ dubbo. xsd"
  16.      default- autowire=" byName">
  17.     < dubbo: application  name=" tcc- bank- icbc" />
  18.     <!--使用  zookeeper 注册中心暴露服务,注意要先开启  zookeeper -->
  19.     < dubbo: registry  address=" nacos://192.168.56.101:8848" />
  20.     <!--< transfer: registry  address=" multicast://224.5.6.7:1234? unicast= false
  21.         /> -->
  22.     < dubbo: protocol  name=" dubboport="28880" />
  23.     < dubbo: provider  timeout="30000"  threads="10"
  24.          threadpool=" fixed" />
  25.     <!-- 第一个 TCC 参与者服务发布 -->
  26.     < dubbo: service
  27.          interface=" org. sky. tcc. bank. icbc. dubbo. MinusMoneyAction"
  28.          timeout="30000"  ref=" minusMoneyActionImpl" />
  29.     < bean  name=" minusMoneyActionImpl"
  30.          class=" org. sky. tcc. bank. icbc. dubbo. MinusMoneyActionImpl" />
  31. </ beans>

我们可以看到在这个dubbo-bean.xml文件中我们配置了一个核心的org.sky.tcc.bank.icbc.dubbo.MinusMoneyAction,我们先来看这个MinusMoneyAction。

因为我们是从:

工行划款;

招行打款;

因此我们相应的在tcc-bank-cmb中还有一个核心的dubbo叫PlusMoneyAction。

MinusMoneyAction的接口类,注意此接口类为一个“残根”即“被调用者”,因此我们把它放置于了skycommon工程内了。

MinusMoneyAction.java


   
  1. package org.sky.tcc.bank.icbc.dubbo;
  2. import io.seata.rm.tcc.api.BusinessActionContext;
  3. import io.seata.rm.tcc.api.BusinessActionContextParameter;
  4. import io.seata.rm.tcc.api.TwoPhaseBusinessAction;
  5. public  interface MinusMoneyAction {
  6.      public String sayHello() throws RuntimeException;
  7.      /**
  8.      * 一阶段从from帐户扣钱
  9.      * 
  10.      * @param businessActionContext
  11.      * @param accountNo
  12.      * @param amount
  13.      */
  14.     @TwoPhaseBusinessAction(name =  "minusMoneyAction", commitMethod =  "commit", rollbackMethod =  "rollback")
  15.      public boolean prepareMinus(BusinessActionContext businessActionContext,
  16.             @BusinessActionContextParameter(paramName =  "accountNo") String accountNo,
  17.             @BusinessActionContextParameter(paramName =  "amount") double amount);
  18.      /**
  19.      * 二阶段提交
  20.      * 
  21.      * @param businessActionContext
  22.      * @return
  23.      */
  24.      public boolean commit(BusinessActionContext businessActionContext);
  25.      /**
  26.      * 二阶段回滚
  27.      * 
  28.      * @param businessActionContext
  29.      * @return
  30.      */
  31.      public boolean rollback(BusinessActionContext businessActionContext);
  32. }

我们可以通过实现类看到它其实是事先了tcc的3个阶段:

  • commit方法对confirm

  • rollback方法对cancel

  • prepareMinus方法对try

这3个方法的实现就是让我们在尽量少破坏业务代码的方法下实现tcc补偿式事务的。这3个方法是相当特殊的,它们的调用为“被SEATA server端全自动异步回调”,即不需要你try if xxx catch exception rollback的,你要做的只是告诉业务方法在何种状态它应该要rollback;何种状态属于调用成功即自动commit。一切都是自动的。

而这边的commit也不是我们传统意义的数据库层面的commit。

让我们来一起看一下它的实现类

MinusMoneyActionImpl.java


   
  1. package org.sky.tcc.bank.icbc.dubbo;
  2. import org.sky.service.BaseService;
  3. import org.sky.tcc.bank.icbc.dao.TransferMoneyDAO;
  4. import org.sky.tcc.bean.AccountBean;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.transaction.TransactionStatus;
  7. import org.springframework.transaction.support.TransactionCallback;
  8. import org.springframework.transaction.support.TransactionTemplate;
  9. import io.seata.core.context.RootContext;
  10. import io.seata.rm.tcc.api.BusinessActionContext;
  11. public  class MinusMoneyActionImpl extends BaseService implements MinusMoneyAction {
  12.      /**
  13.      * 扣钱账户 DAO
  14.      */
  15.     @Autowired
  16.      private TransferMoneyDAO transferMoneyDAO;
  17.      /**
  18.      * 扣钱数据源事务模板
  19.      */
  20.     @Autowired
  21.      private TransactionTemplate transactionTemplate;
  22.     @Override
  23.      public String sayHello() throws RuntimeException {
  24.          return  "hi I am icbc-dubbo";
  25.     }
  26.     @Override
  27.      public boolean prepareMinus(BusinessActionContext businessActionContext, String accountNo, double amount) {
  28.         logger.info( "==========into prepareMinus");
  29.          // 分布式事务ID
  30.          final String xid = RootContext.getXID();
  31.          return transactionTemplate.execute( new TransactionCallback<Boolean>() {
  32.             @Override
  33.              public Boolean doInTransaction(TransactionStatus status) {
  34.                  try {
  35.                      // 校验账户余额
  36.                     AccountBean account = transferMoneyDAO.getAccountForUpdate(accountNo);
  37.                      if (account ==  null) {
  38.                          throw  new RuntimeException( "账户不存在");
  39.                     }
  40.                      if (account.getAmount() - amount <  0) {
  41.                          throw  new RuntimeException( "余额不足");
  42.                     }
  43.                      // 冻结转账金额
  44.                     double freezedAmount = account.getFreezedAmount() + amount;
  45.                     account.setFreezedAmount(freezedAmount);
  46.                     transferMoneyDAO.updateFreezedAmount(account);
  47.                     logger.info(String.format( "======>prepareMinus account[%s] amount[%f], dtx transaction id: %s.",
  48.                             accountNo, amount, xid));
  49.                      return  true;
  50.                 }  catch (Throwable t) {
  51.                     logger.error( "======>error occured in MinusMoneyActionImpl.prepareMinus: " + t.getMessage(),
  52.                             t.getCause());
  53.                     status.setRollbackOnly();
  54.                      return  false;
  55.                 }
  56.             }
  57.         });
  58.     }
  59.     @Override
  60.      public boolean commit(BusinessActionContext businessActionContext) {
  61.         logger.info( "======>into MinusMoneyActionImpl.commit() method");
  62.          // 分布式事务ID
  63.          final String xid = RootContext.getXID();
  64.          // 账户ID
  65.          final String accountNo = String.valueOf(businessActionContext.getActionContext( "accountNo"));
  66.          // 转出金额
  67.          final double amount = Double.valueOf(String.valueOf(businessActionContext.getActionContext( "amount")));
  68.          return transactionTemplate.execute( new TransactionCallback<Boolean>() {
  69.             @Override
  70.              public Boolean doInTransaction(TransactionStatus status) {
  71.                  try {
  72.                     AccountBean account = transferMoneyDAO.getAccountForUpdate(accountNo);
  73.                      // 扣除账户余额
  74.                     double newAmount = account.getAmount() - amount;
  75.                      if (newAmount <  0) {
  76.                          throw  new RuntimeException( "余额不足");
  77.                     }
  78.                     account.setAmount(newAmount);
  79.                      // 释放账户 冻结金额
  80.                     account.setFreezedAmount(account.getFreezedAmount() - amount);
  81.                     transferMoneyDAO.updateAmount(account);
  82.                     logger.info(String.format( "======>minus account[%s] amount[%f], dtx transaction id: %s.", accountNo,
  83.                             amount, xid));
  84.                      return  true;
  85.                 }  catch (Throwable t) {
  86.                     logger.error( "======>error occured in MinusMoneyActionImpl.commit: " + t.getMessage(),
  87.                             t.getCause());
  88.                     status.setRollbackOnly();
  89.                      return  false;
  90.                 }
  91.             }
  92.         });
  93.     }
  94.     @Override
  95.      public boolean rollback(BusinessActionContext businessActionContext) {
  96.         logger.info( "======>into MinusMoneyActionImpl.rollback() method");
  97.          // 分布式事务ID
  98.          final String xid = RootContext.getXID();
  99.          // 账户ID
  100.          final String accountNo = String.valueOf(businessActionContext.getActionContext( "accountNo"));
  101.          // 转出金额
  102.          final double amount = Double.valueOf(String.valueOf(businessActionContext.getActionContext( "amount")));
  103.          return transactionTemplate.execute( new TransactionCallback<Boolean>() {
  104.             @Override
  105.              public Boolean doInTransaction(TransactionStatus status) {
  106.                  try {
  107.                     AccountBean account = transferMoneyDAO.getAccountForUpdate(accountNo);
  108.                      if (account ==  null) {
  109.                          // 账户不存在,回滚什么都不做
  110.                          return  true;
  111.                     }
  112.                      // 释放冻结金额
  113.                      if (account.getFreezedAmount() >= amount) {
  114.                         account.setFreezedAmount(account.getFreezedAmount() - amount);
  115.                         transferMoneyDAO.updateFreezedAmount(account);
  116.                     }
  117.                     logger.info(
  118.                             String.format( "======>Undo prepareMinus account[%s] amount[%f], dtx transaction id: %s.",
  119.                                     accountNo, amount, xid));
  120.                      return  true;
  121.                 }  catch (Throwable t) {
  122.                     logger.error( "======>error occured in MinusMoneyActionImpl.rollback: " + t.getMessage(),
  123.                             t.getCause());
  124.                     status.setRollbackOnly();
  125.                      return  false;
  126.                 }
  127.             }
  128.         });
  129.     }
  130. }

从以上代码我们可以看到它是一个“工行划款”的全过程。

一开始它会从prepareMinus方法走起,你在consumer端只需要调用这个prepareMinus然后后面的commit与rollback是SEATA根据业务方法执行的状态自动回调并决定后一步调用到底是调用commit还是调用rollback的,即在consumer端的业务方法内是不含有commit和rollback的。

此处的PrepareMinus要做的事就是:

  • 先检查帐户是否存,如果不存在直接抛出一个RuntimeException迫使全局事务走后面的rollback分支而不继续走数据库的commit也不走该MinusMoneyAction中的commit(第二步);

  • 如果要转帐的数额大于余额,那肯定也不行的,会抛错;

  • 检查好了,它这边开始做业务幂等了,即为了后面的业务rollback做准备,它会先把一个“冻结余额”+“转帐额”。

这就是prepare阶段,prepare阶段如果成功SEATA会自动走下一步commit,如果遇到有问题就可以运行rollback方法。

那么我们来看业务commit(即confirm)方法吧:

经过了上述的prepare过程,一切无误,那么我们就要开始扣款了。为了做到业务幂等,在此要再做一次余额校验,因为spring中的bean都是“非线程安全”的,此时可能由于并发操作的原因,在过了commit方法后实际数据库内的余额因为其它生产上的一些业务方法导致了这个余额已经低于转帐额了,因此在这里要再做一次校验,如果校验不通过那么抛出RuntimeException。

  • 把要转帐帐户from_account扣去转帐额然后把中间状态 freezed_amount-转帐额以还原到原有状态,整个“工行阶段的业务 ”结束。

很多人在此处要问,为什么需要增加一个freezed_amount,直接扣不就完了。

是!你可以直接扣,可是我们前面说过幂等了,那么请问你在commit或者是在rollback时你会怎么回滚这个数据?

我们人操作的话就是原来转出10元,失败了,把10元退给原帐户!

因此我们这边拿了这个freezed_amount就是来做计算机可以认得的这个“中间暂存”变量。还记得我们在上篇中提到的业务幂等吗?我们需要保存一切中间状态以便于“业务回退/反交易”。

那么我们下面来看看这个“业务回退”是怎么样的,即rollback方法:

  • 整个划款过程分为2个步骤,6个小步骤。它们是:minusMoneyAction, plusMoneyAction,每个步骤都有prepare,commit, rollback。

  • 此处的rollback为业务rollback,即在6个分解的小步骤中有任何一步抛RuntimeException那么SEATA会自动触发两个大步骤中的rollback。

  • rollback要做的,拿icbc是扣款来说就是一个“业务回退”,它先查询该帐户是否存在,如果不存在那也不要做了,帐户不存在不存在任何抛错只要return true就可以了什么都不用做。这边的return true是什么意思尼?这叫空回滚

  • 所谓空回滚就是事务协调器在调用TCC服务的一阶段Try操作时,可能会出现因为丢包而导致的网络超时,此时事务协调器会触发二阶段回滚,调用TCC服务的Cancel操作;TCC服务在未收到Try请求的情况下收到Cancel请求,这种场景被称为空回滚;TCC服务在实现时应当允许空回滚的执行;如果你觉得前面这段话有点拗口,那么我们再说了白一点,看下图就能理解了

从上图看到,这个rollback以返回true来判定回滚成功,此时你要不给它true给它false或者是Exception的话它就会不断的尝试回滚,于是你在后台会看到一堆的try rollback but failed tryagain...要try多少次呢?它是依赖于SEATA server端的conf/nacos-config.txt中的这么几个参数来设定的。


   
  1. client.tm.commit.retry.count= 1
  2. client.tm.rollback.retry.count= 1

你现在理解为什么在rollback调用时如果检查到了帐户已经不存在,直接返回true而不需要再thru什么Exception或者是return false了吧?再加上你如果前面这2个retry.count参数没有设好,到时你就会限入“无限回滚”(因为默认这两个值是-1,代表无限尝试)的状态,最后把jvm给搞爆掉。

  • rollback中对于帐户检查完后如果没有问题那么接下来要做的就是把freezed_amount-要转帐额还原到原来的freezed_amount,并把余额还原回操作前的值即可

下面给出DAO的详细代码,DAO代码很简单,没什么需要多说的。

TransferMoneyDAO.java


   
  1. package org.sky.tcc.bank.icbc.dao;
  2. import org.sky.tcc.bean.AccountBean;
  3. public  interface TransferMoneyDAO {
  4.      public void addAccount(AccountBean account) throws  Exception;
  5.      public int updateAmount(AccountBean account) throws  Exception;
  6.      public AccountBean getAccount(String accountNo) throws  Exception;
  7.      public AccountBean getAccountForUpdate(String accountNo) throws  Exception;
  8.      public int updateFreezedAmount(AccountBean account) throws  Exception;
  9. }

TransferMoneyDAOImpl.java


   
  1. package org.sky.tcc.bank.icbc.dao;
  2. import java.sql.ResultSet;
  3. import java.sql.SQLException;
  4. import org.sky.tcc.bean.AccountBean;
  5. import org.sky.tcc.dao.BaseDAO;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.jdbc.core.JdbcTemplate;
  8. import org.springframework.jdbc.core.RowMapper;
  9. import org.springframework.stereotype.Component;
  10. @Component
  11. public  class TransferMoneyDAOImpl extends BaseDAO implements TransferMoneyDAO {
  12.     @Autowired
  13.      private JdbcTemplate fromJdbcTemplate;
  14.     @Override
  15.      public void addAccount(AccountBean account) throws  Exception {
  16.         String sql =  "insert into bank_account(account_id,amount,freezed_amount) values(?,?,?)";
  17.         fromJdbcTemplate.update(sql, account.getAccountId(), account.getAmount(), account.getFreezedAmount());
  18.     }
  19.     @Override
  20.      public int updateAmount(AccountBean account) throws  Exception {
  21.         String sql =  "update bank_account set amount=?, freezed_amount=? where account_id=?";
  22.         int result =  0;
  23.         result = fromJdbcTemplate.update(sql, account.getAmount(), account.getFreezedAmount(), account.getAccountId());
  24.          return result;
  25.     }
  26.     @Override
  27.      public AccountBean getAccount(String accountNo) throws  Exception {
  28.         String sql =  "select account_id,amount,freezed_amount from bank_account where account_id=?";
  29.         AccountBean account =  null;
  30.          // Object[] params = new Object[] { accountNo };
  31.          try {
  32.             account = fromJdbcTemplate.queryForObject(sql,  new RowMapper<AccountBean>() {
  33.                 @Override
  34.                  public AccountBean mapRow(ResultSet rs, int rowNum) throws SQLException {
  35.                     AccountBean account =  new AccountBean();
  36.                     account.setAccountId(rs.getString( "account_id"));
  37.                     account.setAmount(rs.getDouble( "amount"));
  38.                     account.setFreezedAmount(rs.getDouble( "freezed_amount"));
  39.                      return account;
  40.                 }
  41.             }, accountNo);
  42.         }  catch ( Exception e) {
  43.             logger.error( "getAccount error: " + e.getMessage(), e);
  44.             account =  null;
  45.         }
  46.          return account;
  47.     }
  48.     @Override
  49.      public AccountBean getAccountForUpdate(String accountNo) throws  Exception {
  50.         String sql =  "select account_id,amount,freezed_amount from bank_account where account_id=? for update";
  51.         AccountBean account =  null;
  52.          // Object[] params = new Object[] { accountNo };
  53.          try {
  54.             account = fromJdbcTemplate.queryForObject(sql,  new RowMapper<AccountBean>() {
  55.                 @Override
  56.                  public AccountBean mapRow(ResultSet rs, int rowNum) throws SQLException {
  57.                     AccountBean account =  new AccountBean();
  58.                     account.setAccountId(rs.getString( "account_id"));
  59.                     account.setAmount(rs.getDouble( "amount"));
  60.                     account.setFreezedAmount(rs.getDouble( "freezed_amount"));
  61.                      return account;
  62.                 }
  63.             }, accountNo);
  64.         }  catch ( Exception e) {
  65.             logger.error( "getAccount error: " + e.getMessage(), e);
  66.              return  null;
  67.         }
  68.          return account;
  69.     }
  70.     @Override
  71.      public int updateFreezedAmount(AccountBean account) throws  Exception {
  72.         String sql =  "update bank_account set freezed_amount=? where account_id=?";
  73.         int result =  0;
  74.         result = fromJdbcTemplate.update(sql, account.getFreezedAmount(), account.getAccountId());
  75.          return result;
  76.     }
  77. }

用于启用动的ICBCApplication

此处因为我们用了.xml模式配置dubbo,因此可就不能使用@EnableDubbo了啊!

tcc-bank-cmb工程

这是一个“招行打款”的dubbo provider,它和前面的工行扣款类似,也是实现了TCC的提交方式,只不过它要做的是“增加余额操作”。

其它逻辑和tcc-bank-icbc一样,我们在此看一下它的三个TCC吧。

PlusMoneyActionImpl.java


   
  1. package org.sky.tcc.bank.cmb.dubbo;
  2. import org.sky.service.BaseService;
  3. import org.sky.tcc.bank.cmb.dao.TransferMoneyDAO;
  4. import org.sky.tcc.bean.AccountBean;
  5. import org.springframework.beans.factory.annotation.Autowired;
  6. import org.springframework.transaction.TransactionStatus;
  7. import org.springframework.transaction.support.TransactionCallback;
  8. import org.springframework.transaction.support.TransactionTemplate;
  9. import io.seata.core.context.RootContext;
  10. import io.seata.rm.tcc.api.BusinessActionContext;
  11. public  class PlusMoneyActionImpl extends BaseService implements PlusMoneyAction {
  12.     @Autowired
  13.      private TransactionTemplate transactionTemplate;
  14.     @Autowired
  15.      private TransferMoneyDAO transferMoneyDAO;
  16.     @Override
  17.      public String sayHello() throws RuntimeException {
  18.          return  "hi I am cmb-dubbo";
  19.     }
  20.     @Override
  21.      public boolean prepareAdd(BusinessActionContext businessActionContext, String accountNo, double amount) {
  22.         logger.info( "======>inti prepare add");
  23.          final String xid = RootContext.getXID();
  24.          return transactionTemplate.execute( new TransactionCallback<Boolean>() {
  25.             @Override
  26.              public Boolean doInTransaction(TransactionStatus status) {
  27.                  try {
  28.                      // 校验账户
  29.                     AccountBean account = transferMoneyDAO.getAccountForUpdate(accountNo);
  30.                      if (account ==  null) {
  31.                         logger.info(
  32.                                  "======>prepareAdd: 账户[" + accountNo +  "]不存在, txId:" + businessActionContext.getXid());
  33.                          return  false;
  34.                     }
  35.                      // 待转入资金作为 不可用金额
  36.                     double freezedAmount = account.getFreezedAmount() + amount;
  37.                     account.setFreezedAmount(freezedAmount);
  38.                     transferMoneyDAO.updateFreezedAmount(account);
  39.                     logger.info(String.format(
  40.                              "PlusMoneyActionImpl.prepareAdd account[%s] amount[%f], dtx transaction id: %s.", accountNo,
  41.                             amount, xid));
  42.                      return  true;
  43.                 }  catch (Throwable t) {
  44.                     logger.error( "======>error occured in PlusMoneyActionImpl.prepareAdd: " + t.getMessage(),
  45.                             t.getCause());
  46.                     status.setRollbackOnly();
  47.                      return  false;
  48.                 }
  49.             }
  50.         });
  51.     }
  52.     @Override
  53.      public boolean commit(BusinessActionContext businessActionContext) {
  54.         logger.info( "======>into PlusMoneyActionImpl.commit() method");
  55.          // 分布式事务ID
  56.          final String xid = RootContext.getXID();
  57.          // 账户ID
  58.          final String accountNo = String.valueOf(businessActionContext.getActionContext( "accountNo"));
  59.          // 转出金额
  60.          final double amount = Double.valueOf(String.valueOf(businessActionContext.getActionContext( "amount")));
  61.          return transactionTemplate.execute( new TransactionCallback<Boolean>() {
  62.             @Override
  63.              public Boolean doInTransaction(TransactionStatus status) {
  64.                  try {
  65.                     AccountBean account = transferMoneyDAO.getAccountForUpdate(accountNo);
  66.                      // 加钱
  67.                     double newAmount = account.getAmount() + amount;
  68.                     account.setAmount(newAmount);
  69.                      // 冻结金额 清除
  70.                     account.setFreezedAmount(account.getFreezedAmount() - amount);
  71.                     transferMoneyDAO.updateAmount(account);
  72.                     logger.info(String.format( "======>add account[%s] amount[%f], dtx transaction id: %s.", accountNo,
  73.                             amount, xid));
  74.                      return  true;
  75.                 }  catch (Throwable t) {
  76.                     logger.error( "======>error occured in PlusMoneyActionImpl.commit: " + t.getMessage(), t.getCause());
  77.                     status.setRollbackOnly();
  78.                      return  false;
  79.                 }
  80.             }
  81.         });
  82.     }
  83.     @Override
  84.      public boolean rollback(BusinessActionContext businessActionContext) {
  85.         logger.info( "======>into PlusMoneyActionImpl.rollback() method");
  86.          // 分布式事务ID
  87.          final String xid = RootContext.getXID();
  88.          // 账户ID
  89.          final String accountNo = String.valueOf(businessActionContext.getActionContext( "accountNo"));
  90.          // 转出金额
  91.          final double amount = Double.valueOf(String.valueOf(businessActionContext.getActionContext( "amount")));
  92.          return transactionTemplate.execute( new TransactionCallback<Boolean>() {
  93.             @Override
  94.              public Boolean doInTransaction(TransactionStatus status) {
  95.                  try {
  96.                     AccountBean account = transferMoneyDAO.getAccountForUpdate(accountNo);
  97.                      if (account ==  null) {
  98.                          // 账户不存在, 无需回滚动作
  99.                          return  true;
  100.                     }
  101.                      // 冻结金额 清除
  102.                      if (account.getFreezedAmount() >= amount) {
  103.                         account.setFreezedAmount(account.getFreezedAmount() - amount);
  104.                         transferMoneyDAO.updateFreezedAmount(account);
  105.                     }
  106.                     logger.info(String.format( "======>Undo account[%s] amount[%f], dtx transaction id: %s.", accountNo,
  107.                             amount, xid));
  108.                      return  true;
  109.                 }  catch (Throwable t) {
  110.                     logger.error( "======>error occured in PlusMoneyActionImpl.rollback: " + t.getMessage(),
  111.                             t.getCause());
  112.                     status.setRollbackOnly();
  113.                      return  false;
  114.                 }
  115.             }
  116.         });
  117.     }
  118. }
  • prepareAdd阶段阶段,检查帐户如果有异常抛出RuntimeEcxeption让SEATA触发回滚(业务回滚+事务回滚)。如果无误那么把中间状态 freezed_amount+转入额。

  • commit阶段,帐户余额+转入金融,接着把freezed_amount-转入额度还原到原来的值。

  • rollback阶段,和minusMoneyAction逻辑一样,把冻结款-转帐额再把余额回退到操作前的值。

pom.xml


   
  1. <project xmlns= "http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion> 4.0 .0</modelVersion>
  5.     < parent>
  6.         <groupId>org.sky.demo</groupId>
  7.         <artifactId>nacos- parent</artifactId>
  8.         <version> 0.0 .1-SNAPSHOT</version>
  9.     </ parent>
  10.     <groupId>org.sky.demo</groupId>
  11.     <artifactId>tcc-bank-cmb</artifactId>
  12.     <version> 0.0 .1</version>
  13.     <name>tcc-bank-cmb</name>
  14.     <description>Demo project Dubbo+Nacos+SeataTCC</description>
  15.     <properties>
  16.         <project.reporting.outputEncoding>UTF -8</project.reporting.outputEncoding>
  17.     </properties>
  18.     <dependencies>
  19.         <dependency>
  20.             <groupId>org.mybatis</groupId>
  21.             <artifactId>mybatis</artifactId>
  22.         </dependency>
  23.         <dependency>
  24.             <groupId>org.mybatis</groupId>
  25.             <artifactId>mybatis-spring</artifactId>
  26.         </dependency>
  27.         <dependency>
  28.             <groupId>org.springframework.boot</groupId>
  29.             <artifactId>spring-boot-starter-jdbc</artifactId>
  30.             <exclusions>
  31.                 <exclusion>
  32.                     <groupId>org.springframework.boot</groupId>
  33.                     <artifactId>spring-boot-starter-logging</artifactId>
  34.                 </exclusion>
  35.             </exclusions>
  36.         </dependency>
  37.         <dependency>
  38.             <groupId>org.apache.dubbo</groupId>
  39.             <artifactId>dubbo</artifactId>
  40.         </dependency>
  41.         <dependency>
  42.             <groupId>org.apache.curator</groupId>
  43.             <artifactId>curator-framework</artifactId>
  44.         </dependency>
  45.         <dependency>
  46.             <groupId>org.apache.curator</groupId>
  47.             <artifactId>curator-recipes</artifactId>
  48.         </dependency>
  49.         <dependency>
  50.             <groupId>mysql</groupId>
  51.             <artifactId>mysql-connector-java</artifactId>
  52.         </dependency>
  53.         <dependency>
  54.             <groupId>com.alibaba</groupId>
  55.             <artifactId>druid</artifactId>
  56.         </dependency>
  57.         <dependency>
  58.             <groupId>org.springframework.boot</groupId>
  59.             <artifactId>spring-boot-starter-test</artifactId>
  60.             <scope>test</scope>
  61.         </dependency>
  62.         <dependency>
  63.             <groupId>org.spockframework</groupId>
  64.             <artifactId>spock-core</artifactId>
  65.             <scope>test</scope>
  66.         </dependency>
  67.         <dependency>
  68.             <groupId>org.spockframework</groupId>
  69.             <artifactId>spock-spring</artifactId>
  70.         </dependency>
  71.         <dependency>
  72.             <groupId>org.springframework.boot</groupId>
  73.             <artifactId>spring-boot-configuration-processor</artifactId>
  74.             <optional> true</optional>
  75.         </dependency>
  76.         <dependency>
  77.             <groupId>org.springframework.boot</groupId>
  78.             <artifactId>spring-boot-starter-log4j2</artifactId>
  79.         </dependency>
  80.         <dependency>
  81.             <groupId>org.springframework.boot</groupId>
  82.             <artifactId>spring-boot-starter-web</artifactId>
  83.             <exclusions>
  84.                 <exclusion>
  85.                     <groupId>org.springframework.boot</groupId>
  86.                     <artifactId>spring-boot-starter-logging</artifactId>
  87.                 </exclusion>
  88.                 <exclusion>
  89.                     <groupId>org.springframework.boot</groupId>
  90.                     <artifactId>spring-boot-starter-tomcat</artifactId>
  91.                 </exclusion>
  92.             </exclusions>
  93.         </dependency>
  94.         <dependency>
  95.             <groupId>org.aspectj</groupId>
  96.             <artifactId>aspectjweaver</artifactId>
  97.         </dependency>
  98.         <dependency>
  99.             <groupId>com.lmax</groupId>
  100.             <artifactId>disruptor</artifactId>
  101.         </dependency>
  102.         <dependency>
  103.             <groupId>redis.clients</groupId>
  104.             <artifactId>jedis</artifactId>
  105.         </dependency>
  106.         <dependency>
  107.             <groupId>com.google.guava</groupId>
  108.             <artifactId>guava</artifactId>
  109.         </dependency>
  110.         <dependency>
  111.             <groupId>com.alibaba</groupId>
  112.             <artifactId>fastjson</artifactId>
  113.         </dependency>
  114.         <!-- Dubbo Registry Nacos -->
  115.         <dependency>
  116.             <groupId>org.apache.dubbo</groupId>
  117.             <artifactId>dubbo-registry-nacos</artifactId>
  118.         </dependency>
  119.         <dependency>
  120.             <groupId>com.alibaba.nacos</groupId>
  121.             <artifactId>nacos-client</artifactId>
  122.         </dependency>
  123.         <dependency>
  124.             <groupId>org.sky.demo</groupId>
  125.             <artifactId>skycommon</artifactId>
  126.             <version>${skycommon.version}</version>
  127.         </dependency>
  128.         <dependency>
  129.             <groupId>io.seata</groupId>
  130.             <artifactId>seata-all</artifactId>
  131.         </dependency>
  132.         <dependency>
  133.             <groupId>com.alibaba.boot</groupId>
  134.             <artifactId>nacos-config-spring-boot-starter</artifactId>
  135.             <exclusions>
  136.                 <exclusion>
  137.                     <artifactId>nacos-client</artifactId>
  138.                     <groupId>com.alibaba.nacos</groupId>
  139.                 </exclusion>
  140.             </exclusions>
  141.         </dependency>
  142.         <dependency>
  143.             <groupId>io.netty</groupId>
  144.             <artifactId>netty-all</artifactId>
  145.         </dependency>
  146.         <dependency>
  147.             <groupId>org.projectlombok</groupId>
  148.             <artifactId>lombok</artifactId>
  149.         </dependency>
  150.     </dependencies>
  151.     <build>
  152.         <finalName>${project.artifactId}</finalName>
  153.         <sourceDirectory>src/main/java</sourceDirectory>
  154.         <testSourceDirectory>src/test/java</testSourceDirectory>
  155.         <plugins>
  156.             <plugin>
  157.                 <groupId>org.apache.maven.plugins</groupId>
  158.                 <artifactId>maven-compiler-plugin</artifactId>
  159.             </plugin>
  160.             <plugin>
  161.                 <groupId>org.springframework.boot</groupId>
  162.                 <artifactId>spring-boot-maven-plugin</artifactId>
  163.                 <configuration>
  164.                     <jvmArguments>-Dfile.encoding=UTF -8</jvmArguments>
  165.                 </configuration>
  166.                 <executions>
  167.                     <execution>
  168.                         <goals>
  169.                             <goal>repackage</goal>
  170.                         </goals>
  171.                     </execution>
  172.                 </executions>
  173.             </plugin>
  174.             <plugin>
  175.                 <groupId>org.apache.maven.plugins</groupId>
  176.                 <artifactId>maven-war-plugin</artifactId>
  177.                 <version> 2.6</version>
  178.                 <configuration>
  179.                     <failOnMissingWebXml> false</failOnMissingWebXml>
  180.                 </configuration>
  181.             </plugin>
  182.         </plugins>
  183.         <resources>
  184.             <resource>
  185.                 <directory>src/main/resources</directory>
  186.                 <excludes>
  187.                     <exclude>application*.properties</exclude>
  188.                 </excludes>
  189.             </resource>
  190.             <resource>
  191.                 <directory>src/main/webapp</directory>
  192.                 <targetPath>META-INF/resources</targetPath>
  193.                 <includes>
  194.                     < include>** /**</include>
  195.                 </includes>
  196.             </resource>
  197.             <resource>
  198.                 <directory>src/main/resources</directory>
  199.                 <filtering>true</filtering>
  200.                 <includes>
  201.                     <include>application.properties</include>
  202.                 </includes>
  203.             </resource>
  204.         </resources>
  205.     </build>
  206. </project>

application.properties


   
  1. spring.datasource.type=com.alibaba.druid.pool.DruidDataSource
  2. spring.datasource.driverClassName=com.mysql.jdbc.Driver
  3. spring.datasource.url=jdbc:mysql: //192.168.56.101:3306/bank_cmb?useUnicode=true&characterEncoding=utf-8&useSSL=false
  4. spring.datasource.username=cmb
  5. spring.datasource.password= 111111
  6. spring.datasource.initialize= false
  7. spring.datasource.initialSize= 5
  8. spring.datasource.minIdle= 5
  9. spring.datasource.maxActive:  20
  10. spring.datasource.maxWait:  30000
  11. spring.datasource.validationQuery=SELECT  1 FROM DUAL
  12. spring.datasource.testWhileIdle= true
  13. spring.datasource.testOnBorrow= false
  14. spring.datasource.testOnReturn= false
  15. spring.datasource.poolPreparedStatements= true
  16. spring.datasource.maxPoolPreparedStatementPerConnectionSize= 128
  17. logging.config=classpath:log4j2.xml

spring/dubbo-bean.xml


   
  1. <?xml version= "1.0" encoding= "UTF-8" ?>
  2. <!-- ~ Copyright  1999 -2018 Alibaba Group Holding Ltd. ~ ~ Licensed under 
  3.     the Apache License, Version  2.0 (the  "License"); ~ you may not  use  this  file 
  4.      except  in  compliance  with  the  License. ~  You  may  obtain  a  copy  of  the  License 
  5.      at ~ ~  http:// www. apache. org/ licenses/ LICENSE-2.0 ~ ~  Unless  required  by 
  6.      applicable  law  or  agreed  to  in  writingsoftware ~  distributed  under  the 
  7.      License  is  distributed  on  an " AS  ISBASIS, ~  WITHOUT  WARRANTIES  OR  CONDITIONS 
  8.      OF  ANY  KINDeither  express  or  implied. ~  See  the  License  for  the  specific 
  9.      language  governing  permissions  and ~  limitations  under  the  License. -->
  10. < beans  xmlns=" http:// www. springframework. org/ schema/ beans"
  11.      xmlns: xsi=" http:// www. w3. org/2001/ XMLSchema- instance"
  12.      xmlns: dubbo=" http:// code. alibabatech. com/ schema/ dubbo"
  13.      xsi: schemaLocation=" http:// www. springframework. org/ schema/ beans  http:// www. springframework. org/ schema/ beans/ spring- beans. xsd
  14.         http:// code. alibabatech. com/ schema/ dubbo
  15.         http:// code. alibabatech. com/ schema/ dubbo/ dubbo. xsd"
  16.      default- autowire=" byName">
  17.     < dubbo: application  name=" tcc- bank- cmb" />
  18.     <!--使用  zookeeper 注册中心暴露服务,注意要先开启  zookeeper -->
  19.     < dubbo: registry  address=" nacos://192.168.56.101:8848" />
  20.     <!--< transfer: registry  address=" multicast://224.5.6.7:1234? unicast= false
  21.         /> -->
  22.     < dubbo: protocol  name=" dubboport="29990" />
  23.     < dubbo: provider  timeout="30000"  threads="10"
  24.          threadpool=" fixed" />
  25.     <!-- 第一个 TCC 参与者服务发布 -->
  26.     < dubbo: service
  27.          interface=" org. sky. tcc. bank. cmb. dubbo. PlusMoneyAction"
  28.          timeout="30000"  ref=" plusMoneyActionImpl" />
  29.     < bean  name=" plusMoneyActionImpl"
  30.          class=" org. sky. tcc. bank. cmb. dubbo. PlusMoneyActionImpl" />
  31. </ beans>

spring/spirng-bean.xml


   
  1. <?xml version= "1.0" encoding= "UTF-8" ?>
  2. <!-- ~ Copyright  1999 -2018 Alibaba Group Holding Ltd. ~ ~ Licensed under 
  3.     the Apache License, Version  2.0 (the  "License"); ~ you may not  use  this  file 
  4.      except  in  compliance  with  the  License. ~  You  may  obtain  a  copy  of  the  License 
  5.      at ~ ~  http:// www. apache. org/ licenses/ LICENSE-2.0 ~ ~  Unless  required  by 
  6.      applicable  law  or  agreed  to  in  writingsoftware ~  distributed  under  the 
  7.      License  is  distributed  on  an " AS  ISBASIS, ~  WITHOUT  WARRANTIES  OR  CONDITIONS 
  8.      OF  ANY  KINDeither  express  or  implied. ~  See  the  License  for  the  specific 
  9.      language  governing  permissions  and ~  limitations  under  the  License. -->
  10. < beans  xmlns=" http:// www. springframework. org/ schema/ beans"
  11.      xmlns: xsi=" http:// www. w3. org/2001/ XMLSchema- instance"
  12.      xmlns: dubbo=" http:// code. alibabatech. com/ schema/ dubbo"
  13.      xsi: schemaLocation=" http:// www. springframework. org/ schema/ beans  http:// www. springframework. org/ schema/ beans/ spring- beans. xsd
  14.         http:// code. alibabatech. com/ schema/ dubbo
  15.         http:// code. alibabatech. com/ schema/ dubbo/ dubbo. xsd"
  16.      default- autowire=" byName">
  17.     < bean  id=" transactionTemplate"
  18.          class=" org. springframework. transaction. support. TransactionTemplate">
  19.         < property  name=" propagationBehaviorName">
  20.             < value> PROPAGATION_REQUIRES_NEW</ value>
  21.         </ property>
  22.         < property  name=" transactionManager">
  23.             < ref  bean=" transactionManager" />
  24.         </ property>
  25.     </ bean>
  26. </ beans>

自动装配用TccBankConfig.java,这边要注意的是此处的GlobalTransaction里的名字可必须是tcc-bank-cmb啦,不要复制粘贴后忘改了。

TccBankConfig.java


   
  1. package org.sky.tcc.bank.cmb.config;
  2. import org.springframework.boot.context.properties.ConfigurationProperties;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.context.annotation.ImportResource;
  6. import org.springframework.jdbc.core.JdbcTemplate;
  7. import org.springframework.jdbc.datasource.DataSourceTransactionManager;
  8. import com.alibaba.druid.pool.DruidDataSource;
  9. import io.seata.spring.annotation.GlobalTransactionScanner;
  10. @Configuration
  11. @ImportResource(locations = {  "spring/spring-bean.xml""spring/dubbo-bean.xml" })
  12. public  class TccBankConfig {
  13.     @Bean
  14.     @ConfigurationProperties(prefix =  "spring.datasource")
  15.      public DruidDataSource druidDataSource() {
  16.          return  new DruidDataSource();
  17.     }
  18.     @Bean
  19.      public DataSourceTransactionManager transactionManager(DruidDataSource druidDataSource) {
  20.          return  new DataSourceTransactionManager(druidDataSource);
  21.     }
  22.     @Bean
  23.      public JdbcTemplate jdbcTemplate(DruidDataSource druidDataSource) {
  24.          return  new JdbcTemplate(druidDataSource);
  25.     }
  26.     @Bean
  27.      public GlobalTransactionScanner globalTransactionScanner() {
  28.          return  new GlobalTransactionScanner( "tcc-bank-cmb""demo-tx-grp");
  29.     }
  30. }

TransferMoneyDAO.java


   
  1. package org.sky.tcc.bank.cmb.dao;
  2. import org.sky.tcc.bean.AccountBean;
  3. public  interface TransferMoneyDAO {
  4.      public void addAccount(AccountBean account) throws  Exception;
  5.      public int updateAmount(AccountBean account) throws  Exception;
  6.      public AccountBean getAccount(String accountNo) throws  Exception;
  7.      public AccountBean getAccountForUpdate(String accountNo) throws  Exception;
  8.      public int updateFreezedAmount(AccountBean account) throws  Exception;
  9. }

TransferMoneyDAOImpl.java


   
  1. package org.sky.tcc.bank.cmb.dao;
  2. import java.sql.ResultSet;
  3. import java.sql.SQLException;
  4. import org.sky.tcc.bean.AccountBean;
  5. import org.sky.tcc.dao.BaseDAO;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.jdbc.core.JdbcTemplate;
  8. import org.springframework.jdbc.core.RowMapper;
  9. import org.springframework.stereotype.Component;
  10. @Component
  11. public  class TransferMoneyDAOImpl extends BaseDAO implements TransferMoneyDAO {
  12.     @Autowired
  13.      private JdbcTemplate toJdbcTemplate;
  14.     @Override
  15.      public void addAccount(AccountBean account) throws  Exception {
  16.         String sql =  "insert into bank_account(account_id,amount,freezed_amount) values(?,?,?)";
  17.         toJdbcTemplate.update(sql, account.getAccountId(), account.getAmount(), account.getFreezedAmount());
  18.     }
  19.     @Override
  20.      public int updateAmount(AccountBean account) throws  Exception {
  21.         String sql =  "update bank_account set amount=?, freezed_amount=? where account_id=?";
  22.         int result =  0;
  23.         result = toJdbcTemplate.update(sql, account.getAmount(), account.getFreezedAmount(), account.getAccountId());
  24.          return result;
  25.     }
  26.     @Override
  27.      public AccountBean getAccount(String accountNo) throws  Exception {
  28.         String sql =  "select account_id,amount,freezed_amount from bank_account where account_id=?";
  29.         AccountBean account =  null;
  30.          // Object[] params = new Object[] { accountNo };
  31.          try {
  32.             account = toJdbcTemplate.queryForObject(sql,  new RowMapper<AccountBean>() {
  33.                 @Override
  34.                  public AccountBean mapRow(ResultSet rs, int rowNum) throws SQLException {
  35.                     AccountBean account =  new AccountBean();
  36.                     account.setAccountId(rs.getString( "account_id"));
  37.                     account.setAmount(rs.getDouble( "amount"));
  38.                     account.setFreezedAmount(rs.getDouble( "freezed_amount"));
  39.                      return account;
  40.                 }
  41.             }, accountNo);
  42.         }  catch ( Exception e) {
  43.             logger.error( "getAccount error: " + e.getMessage(), e);
  44.             account =  null;
  45.         }
  46.          return account;
  47.     }
  48.     @Override
  49.      public AccountBean getAccountForUpdate(String accountNo) throws  Exception {
  50.         String sql =  "select account_id,amount,freezed_amount from bank_account where account_id=? for update";
  51.         AccountBean account =  null;
  52.          // Object[] params = new Object[] { accountNo };
  53.          try {
  54.             account = toJdbcTemplate.queryForObject(sql,  new RowMapper<AccountBean>() {
  55.                 @Override
  56.                  public AccountBean mapRow(ResultSet rs, int rowNum) throws SQLException {
  57.                     AccountBean account =  new AccountBean();
  58.                     account.setAccountId(rs.getString( "account_id"));
  59.                     account.setAmount(rs.getDouble( "amount"));
  60.                     account.setFreezedAmount(rs.getDouble( "freezed_amount"));
  61.                      return account;
  62.                 }
  63.             }, accountNo);
  64.         }  catch ( Exception e) {
  65.             logger.error( "getAccount error: " + e.getMessage(), e);
  66.             account =  null;
  67.         }
  68.          return account;
  69.     }
  70.     @Override
  71.      public int updateFreezedAmount(AccountBean account) throws  Exception {
  72.         String sql =  "update bank_account set freezed_amount=? where account_id=?";
  73.         int result =  0;
  74.         result = toJdbcTemplate.update(sql, account.getFreezedAmount(), account.getAccountId());
  75.          return result;
  76.     }
  77. }

用于启用动的CMBApplication,此处因为我们用了.xml模式配置dubbo,因此可就不能使用@EnableDubbo了哦再次提醒一次。

CMBApplication.java


   
  1. package org.sky.tcc.bank.cmb;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  4. import org.springframework.context.annotation.ComponentScan;
  5. @EnableAutoConfiguration
  6. @ComponentScan(basePackages = {  "org.sky.tcc.bank" })
  7. public  class CMBApplication {
  8.      public  static void main(String[] args) {
  9.         SpringApplication.run(CMBApplication.class, args);
  10.     }
  11. }

到此为止两个dubbo provider制作完成,我们把它们分别运行起来。

启动之前我放出此次在生产环境调整过的nacos-config.txt文件,你只要在nacos服务启动的情况下重新在seata/conf下就可以了。 


   
  1. ./nacos-config.sh localhost

seata/conf/nacos-config.txt


   
  1. transport.type=TCP
  2. transport.server=NIO
  3. transport.heartbeat= true
  4. transport.thread-factory.boss-thread-prefix=NettyBoss
  5. transport.thread-factory.worker-thread-prefix=NettyServerNIOWorker
  6. transport.thread-factory.server-executor-thread-prefix=NettyServerBizHandler
  7. transport.thread-factory.share-boss-worker= false
  8. transport.thread-factory.client-selector-thread-prefix=NettyClientSelector
  9. transport.thread-factory.client-selector-thread-size= 1
  10. transport.thread-factory.client-worker-thread-prefix=NettyClientWorkerThread
  11. transport.thread-factory.boss-thread-size= 1
  12. transport.thread-factory.worker-thread-size= 8
  13. transport.shutdown.wait= 3
  14. service.vgroup_mapping.demo-tx-grp= default
  15. service. default.grouplist= 192.168 .56 .101: 8091
  16. service.enableDegrade= false
  17. service.disable= false
  18. service.max.commit.retry.timeout= 10000
  19. service.max.rollback.retry.timeout= 3
  20. client.async.commit.buffer.limit= 10000
  21. client.lock.retry.internal= 3
  22. client.lock.retry.times= 3
  23. client.lock.retry.policy.branch-rollback-on-conflict= true
  24. client.table.meta.check.enable= true
  25. client.report.retry.count= 1
  26. client.tm.commit.retry.count= 1
  27. client.tm.rollback.retry.count= 1
  28. store.mode=db
  29. store.file.dir=file_store/data
  30. store.file.max-branch-session-size= 16384
  31. store.file.max- global-session-size= 512
  32. store.file.file-write-buffer-cache-size= 16384
  33. store.file.flush-disk-mode=async
  34. store.file.session.reload.read_size= 100
  35. store.db.datasource=druid
  36. store.db.db-type=mysql
  37. store.db.driver- class-name=com.mysql.jdbc.Driver
  38. store. db. url= jdbc: mysql://192.168.56.101:3306/ seata? useUnicode= true
  39. store. db. user= seata
  40. store. db. password=111111
  41. store. db. min- conn=1
  42. store. db. max- conn=3
  43. store. db. global. table= global_table
  44. store. db. branch. table= branch_table
  45. store. db. query- limit=100
  46. store. db. lock- table= lock_table
  47. recovery. committing- retry- period=1000
  48. recovery. asyn- committing- retry- period=1000
  49. recovery. rollbacking- retry- period=1000
  50. recovery. timeout- retry- period=1000
  51. transaction. undo. data. validation= true
  52. transaction. undo. log. serialization= jackson
  53. transaction. undo. log. save. days=1
  54. transaction. undo. log. delete. period=86400000
  55. transaction. undo. log. table= undo_log
  56. transport. serialization= seata
  57. transport. compressor= none
  58. metrics. enabled= false
  59. metrics. registry- type= compact
  60. metrics. exporter- list= prometheus
  61. metrics. exporter- prometheus- port=9898
  62. support. spring. datasource. autoproxy= false
  • tcc-bank-icbc运行在28880端口;

  • tcc-bank-cmb运行在29990端口;

tcc-money-king工程

为了全真模拟生产,我们制作了一个spring boot的consumer,在这个工程里我们依然使用springboot+xml配置混合的方式,关键在该工程的业务方法内,我们看下去。

pom.xml


   
  1. <project xmlns= "http://maven.apache.org/POM/4.0.0"
  2.     xmlns:xsi= "http://www.w3.org/2001/XMLSchema-instance"
  3.     xsi:schemaLocation= "http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4.     <modelVersion> 4.0 .0</modelVersion>
  5.     < parent>
  6.         <groupId>org.sky.demo</groupId>
  7.         <artifactId>nacos- parent</artifactId>
  8.         <version> 0.0 .1-SNAPSHOT</version>
  9.     </ parent>
  10.     <groupId>org.sky.demo</groupId>
  11.     <artifactId>tcc-money-king</artifactId>
  12.     <version> 0.0 .1</version>
  13.     <packaging>war</packaging>
  14.     <description>Demo project Dubbo+Nacos+SeataTCC Consumer</description>
  15.     <dependencies>
  16.         <dependency>
  17.             <groupId>org.apache.dubbo</groupId>
  18.             <artifactId>dubbo</artifactId>
  19.         </dependency>
  20.         <dependency>
  21.             <groupId>org.apache.curator</groupId>
  22.             <artifactId>curator-recipes</artifactId>
  23.         </dependency>
  24.         <dependency>
  25.             <groupId>org.springframework.boot</groupId>
  26.             <artifactId>spring-boot-starter-test</artifactId>
  27.             <scope>test</scope>
  28.         </dependency>
  29.         <dependency>
  30.             <groupId>org.spockframework</groupId>
  31.             <artifactId>spock-core</artifactId>
  32.             <scope>test</scope>
  33.         </dependency>
  34.         <dependency>
  35.             <groupId>org.spockframework</groupId>
  36.             <artifactId>spock-spring</artifactId>
  37.         </dependency>
  38.         <dependency>
  39.             <groupId>org.springframework.boot</groupId>
  40.             <artifactId>spring-boot-configuration-processor</artifactId>
  41.             <optional> true</optional>
  42.         </dependency>
  43.         <dependency>
  44.             <groupId>org.springframework.boot</groupId>
  45.             <artifactId>spring-boot-starter-log4j2</artifactId>
  46.         </dependency>
  47.         <dependency>
  48.             <groupId>org.springframework.boot</groupId>
  49.             <artifactId>spring-boot-starter-web</artifactId>
  50.             <exclusions>
  51.                 <exclusion>
  52.                     <groupId>org.springframework.boot</groupId>
  53.                     <artifactId>spring-boot-starter-logging</artifactId>
  54.                 </exclusion>
  55.                 <exclusion>
  56.                     <groupId>org.springframework.boot</groupId>
  57.                     <artifactId>spring-boot-starter-tomcat</artifactId>
  58.                 </exclusion>
  59.             </exclusions>
  60.         </dependency>
  61.         <dependency>
  62.             <groupId>org.springframework.boot</groupId>
  63.             <artifactId>spring-boot-starter-tomcat</artifactId>
  64.             <scope>compile</scope>
  65.         </dependency>
  66.         <dependency>
  67.             <groupId>org.aspectj</groupId>
  68.             <artifactId>aspectjweaver</artifactId>
  69.         </dependency>
  70.         <dependency>
  71.             <groupId>com.lmax</groupId>
  72.             <artifactId>disruptor</artifactId>
  73.         </dependency>
  74.         <dependency>
  75.             <groupId>redis.clients</groupId>
  76.             <artifactId>jedis</artifactId>
  77.         </dependency>
  78.         <dependency>
  79.             <groupId>com.google.guava</groupId>
  80.             <artifactId>guava</artifactId>
  81.         </dependency>
  82.         <dependency>
  83.             <groupId>com.alibaba</groupId>
  84.             <artifactId>fastjson</artifactId>
  85.         </dependency>
  86.         <!-- Dubbo Registry Nacos -->
  87.         <dependency>
  88.             <groupId>org.apache.dubbo</groupId>
  89.             <artifactId>dubbo-registry-nacos</artifactId>
  90.         </dependency>
  91.         <dependency>
  92.             <groupId>com.alibaba.nacos</groupId>
  93.             <artifactId>nacos-client</artifactId>
  94.         </dependency>
  95.         <dependency>
  96.             <groupId>org.sky.demo</groupId>
  97.             <artifactId>skycommon</artifactId>
  98.             <version>${skycommon.version}</version>
  99.         </dependency>
  100.         <dependency>
  101.             <groupId>io.seata</groupId>
  102.             <artifactId>seata-all</artifactId>
  103.         </dependency>
  104.         <dependency>
  105.             <groupId>com.alibaba.boot</groupId>
  106.             <artifactId>nacos-config-spring-boot-starter</artifactId>
  107.             <exclusions>
  108.                 <exclusion>
  109.                     <artifactId>nacos-client</artifactId>
  110.                     <groupId>com.alibaba.nacos</groupId>
  111.                 </exclusion>
  112.             </exclusions>
  113.         </dependency>
  114.         <dependency>
  115.             <groupId>org.apache.curator</groupId>
  116.             <artifactId>curator-framework</artifactId>
  117.         </dependency>
  118.         <dependency>
  119.             <groupId>org.apache.curator</groupId>
  120.             <artifactId>curator-recipes</artifactId>
  121.         </dependency>
  122.         <dependency>
  123.             <groupId>io.netty</groupId>
  124.             <artifactId>netty-all</artifactId>
  125.         </dependency>
  126.         <dependency>
  127.             <groupId>org.projectlombok</groupId>
  128.             <artifactId>lombok</artifactId>
  129.         </dependency>
  130.         <dependency>
  131.             <groupId>javax.servlet</groupId>
  132.             <artifactId>javax.servlet-api</artifactId>
  133.             <version>${javax.servlet.version}</version>
  134.             <scope>provided</scope>
  135.         </dependency>
  136.     </dependencies>
  137.     <build>
  138.         <sourceDirectory>src/main/java</sourceDirectory>
  139.         <testSourceDirectory>src/test/java</testSourceDirectory>
  140.         <plugins>
  141.             <plugin>
  142.                 <groupId>org.springframework.boot</groupId>
  143.                 <artifactId>spring-boot-maven-plugin</artifactId>
  144.             </plugin>
  145.         </plugins>
  146.         <resources>
  147.             <resource>
  148.                 <directory>src/main/resources</directory>
  149.             </resource>
  150.             <resource>
  151.                 <directory>src/main/webapp</directory>
  152.                 <targetPath>META-INF/resources</targetPath>
  153.                 <includes>
  154.                     < include>** /**</include>
  155.                 </includes>
  156.             </resource>
  157.             <resource>
  158.                 <directory>src/main/resources</directory>
  159.                 <filtering>true</filtering>
  160.                 <includes>
  161.                     <include>application.properties</include>
  162.                     <include>application-${profileActive}.properties</include>
  163.                 </includes>
  164.             </resource>
  165.         </resources>
  166.     </build>
  167. </project>

application.properties


   
  1. server.port= 8082
  2. server.tomcat.maxConnections= 300
  3. server.tomcat.maxThreads= 300
  4. server.tomcat.uriEncoding=UTF -8
  5. server.tomcat.maxThreads= 300
  6. server.tomcat.minSpareThreads= 150
  7. server.connectionTimeout= 20000
  8. server.tomcat.maxHttpPostSize= 0
  9. server.tomcat.acceptCount= 300
  10. logging.config=classpath:log4j2.xml

spring/dubbo-reference.xml


   
  1. <?xml version= "1.0" encoding= "UTF-8" ?>
  2. <!-- ~ Copyright  1999 -2018 Alibaba Group Holding Ltd. ~ ~ Licensed under 
  3.     the Apache License, Version  2.0 (the  "License"); ~ you may not  use  this  file 
  4.      except  in  compliance  with  the  License. ~  You  may  obtain  a  copy  of  the  License 
  5.      at ~ ~  http:// www. apache. org/ licenses/ LICENSE-2.0 ~ ~  Unless  required  by 
  6.      applicable  law  or  agreed  to  in  writingsoftware ~  distributed  under  the 
  7.      License  is  distributed  on  an " AS  ISBASIS, ~  WITHOUT  WARRANTIES  OR  CONDITIONS 
  8.      OF  ANY  KINDeither  express  or  implied. ~  See  the  License  for  the  specific 
  9.      language  governing  permissions  and ~  limitations  under  the  License. -->
  10. < beans  xmlns=" http:// www. springframework. org/ schema/ beans"
  11.      xmlns: xsi=" http:// www. w3. org/2001/ XMLSchema- instance"
  12.      xmlns: dubbo=" http:// code. alibabatech. com/ schema/ dubbo"
  13.      xsi: schemaLocation=" http:// www. springframework. org/ schema/ beans  http:// www. springframework. org/ schema/ beans/ spring- beans. xsd
  14.         http:// code. alibabatech. com/ schema/ dubbo
  15.         http:// code. alibabatech. com/ schema/ dubbo/ dubbo. xsd"
  16.      default- autowire=" byName">
  17.     < dubbo: application  name=" tcc- bank- sample">
  18.         < dubbo: parameter  key=" qos. enablevalue=" false" />
  19.     </ dubbo: application>
  20.     <!--使用  zookeeper 注册中心暴露服务,注意要先开启  zookeeper -->
  21.     < dubbo: registry  address=" nacos://192.168.56.101:8848" />
  22.     <!--< transfer: registry  address=" multicast://224.5.6.7:1234? unicast= false
  23.         /> -->
  24.     <!-- 第一个 TCC参与者 服务订阅 -->
  25.     < dubbo: reference  id=" minusMoneyAction"
  26.          interface=" org. sky. tcc. bank. icbc. dubbo. MinusMoneyAction"
  27.          check=" falselazy=" true" />
  28.     <!-- 第二个 TCC参与者 服务订阅 -->
  29.     < dubbo: reference  id=" plusMoneyAction"
  30.          interface=" org. sky. tcc. bank. cmb. dubbo. PlusMoneyAction"
  31.          check=" falselazy=" true" />
  32. </ beans>

spring boot自动注解用SeataAutoConfig.java


   
  1. package org.sky.tcc.moneyking.config;
  2. import io.seata.spring.annotation.GlobalTransactionScanner;
  3. import org.springframework.context.annotation.Bean;
  4. import org.springframework.context.annotation.Configuration;
  5. import org.springframework.context.annotation.ImportResource;
  6. @Configuration
  7. @ImportResource(locations = {  "spring/dubbo-reference.xml" })
  8. public  class SeataAutoConfig {
  9.     @Bean
  10.      public GlobalTransactionScanner globalTransactionScanner() {
  11.          return  new GlobalTransactionScanner( "tcc-bank-sample""demo-tx-grp");
  12.     }
  13. }

这边的GlobalTRansactionScanner里的第一个参数可就是事务边界了啊,注意这边的事务group必须和SEATA端的nacos-config.txt内配置的完全一致。

TccMoneyKingBizService.java


   
  1. package org.sky.tcc.moneyking.service.biz;
  2. import org.sky. exception.DemoRpcRunTimeException;
  3. public  interface TccMoneyKingBizService {
  4.      public boolean transfer(String from, String to, double amount) throws DemoRpcRunTimeException;
  5. }

核心业务方法TccMoneyKingBizServiceImpl.java


   
  1. package org.sky.tcc.moneyking.service.biz;
  2. import org.sky. exception.DemoRpcRunTimeException;
  3. import org.sky.service.BaseService;
  4. import org.sky.tcc.bank.cmb.dubbo.PlusMoneyAction;
  5. import org.sky.tcc.bank.icbc.dubbo.MinusMoneyAction;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.stereotype.Service;
  8. import io.seata.spring.annotation.GlobalTransactional;
  9. @Service
  10. public  class TccMoneyKingBizServiceImpl extends BaseService implements TccMoneyKingBizService {
  11.     @Autowired
  12.      private MinusMoneyAction minusMoneyAction;
  13.     @Autowired
  14.      private PlusMoneyAction plusMoneyAction;
  15.     @Override
  16.     @GlobalTransactional(timeoutMills =  300000, name =  "tcc-bank-sample")
  17.      public boolean transfer(String from, String to, double amount) throws DemoRpcRunTimeException {
  18.         boolean answer = minusMoneyAction.prepareMinus( null, from, amount);
  19.          if (!answer) {
  20.              // 扣钱参与者,一阶段失败; 回滚本地事务和分布式事务
  21.              throw  new DemoRpcRunTimeException( "账号:[" + from +  "] 预扣款失败");
  22.         }
  23.          // 加钱参与者,一阶段执行
  24.         answer = plusMoneyAction.prepareAdd( null, to, amount);
  25.          if (!answer) {
  26.              throw  new DemoRpcRunTimeException( "账号:[" + to +  "] 预收款失败");
  27.         }
  28.          return  true;
  29.     }
  30. }

这边可以看到是如何调用icbc的扣款和cmb的打款动作的,这边根本不需要你再去写什么commit和rollback,只要这两个dubbo provider中的prepare方法执行正常,SEATA就会自动回调icbc和cmb中的commit方法;只要icbc或者是cmb中有任何一步抛错,就会触发这两个provider中的业务回滚rollback方法。

MonekyKingController.java


   
  1. package org.sky.tcc.moneyking.controller;
  2. import java.util.HashMap;
  3. import java.util.Map;
  4. import org.sky.controller.BaseController;
  5. import org.sky.tcc.bean.AccountBean;
  6. import org.sky.tcc.moneyking.service.biz.TccMoneyKingBizService;
  7. import org.springframework.beans.factory.annotation.Autowired;
  8. import org.springframework.http.HttpHeaders;
  9. import org.springframework.http.HttpStatus;
  10. import org.springframework.http.MediaType;
  11. import org.springframework.http.ResponseEntity;
  12. import org.springframework.web.bind.annotation.PostMapping;
  13. import org.springframework.web.bind.annotation.RequestBody;
  14. import org.springframework.web.bind.annotation.RequestMapping;
  15. import org.springframework.web.bind.annotation.RestController;
  16. import com.alibaba.fastjson.JSON;
  17. import com.alibaba.fastjson.JSONObject;
  18. @RestController
  19. @RequestMapping( "moneyking")
  20. public  class MonekyKingController extends BaseController {
  21.     @Autowired
  22.      private TccMoneyKingBizService tccMoneyKingBizService;
  23.     @PostMapping(value =  "/transfermoney", produces =  "application/json")
  24.      public ResponseEntity<String> transferMoney(@RequestBody String params) throws  Exception {
  25.         ResponseEntity<String> response =  null;
  26.         String returnResultStr;
  27.         HttpHeaders headers =  new HttpHeaders();
  28.         headers.setContentType(MediaType.APPLICATION_JSON_UTF8);
  29.         Map<String, Object> result =  new HashMap<>();
  30.          try {
  31.             logger.info( "input params=====" + params);
  32.             JSONObject requestJsonObj = JSON.parseObject(params);
  33.             Map<String, AccountBean> acctMap = getAccountFromJson(requestJsonObj);
  34.             AccountBean acctFrom = acctMap.get( "account_from");
  35.             AccountBean acctTo = acctMap.get( "account_to");
  36.             boolean answer = tccMoneyKingBizService.transfer(acctFrom.getAccountId(), acctTo.getAccountId(),
  37.                     acctFrom.getAmount());
  38. //            tccMoneyKingBizService.icbcHello();
  39. //            tccMoneyKingBizService.cmbHello();
  40.             result.put( "account_from", acctFrom.getAccountId());
  41.             result.put( "account_to", acctTo.getAccountId());
  42.             result.put( "transfer_money", acctFrom.getAmount());
  43.             result.put( "message""transferred successfully");
  44.             returnResultStr = JSON.toJSONString(result);
  45.             logger.info( "transfer money successfully======>\n" + returnResultStr);
  46.             response =  new ResponseEntity<>(returnResultStr, headers, HttpStatus.OK);
  47.         }  catch ( Exception e) {
  48.             logger.error( "transfer money with error: " + e.getMessage(), e);
  49.             result.put( "message""transfer money with error[ " + e.getMessage() +  "]");
  50.             returnResultStr = JSON.toJSONString(result);
  51.             response =  new ResponseEntity<>(returnResultStr, headers, HttpStatus.EXPECTATION_FAILED);
  52.         }
  53.          return response;
  54.     }
  55. }

用于启动的MoneyKingApplication.java


   
  1. package org.sky.tcc.moneyking;
  2. import org.apache.dubbo.config.spring.context.annotation.EnableDubbo;
  3. import org.springframework.boot.SpringApplication;
  4. import org.springframework.boot.autoconfigure.EnableAutoConfiguration;
  5. import org.springframework.boot.web.servlet.ServletComponentScan;
  6. import org.springframework.context.annotation.ComponentScan;
  7. import org.springframework.transaction.annotation.EnableTransactionManagement;
  8. @ServletComponentScan
  9. @EnableAutoConfiguration
  10. @ComponentScan(basePackages = {  "org.sky" })
  11. public  class MoneyKingApplication {
  12.      public  static void main(String[] args) {
  13.         SpringApplication.run(MoneyKingApplication.class, args);
  14.     }
  15. }

把MoneyKingApplication启动起来。

看,两个dubbo provider已经被SEATA纳入托管。

 

测试案例

我们初始化两个帐户,一个叫a一个叫b。然后通过a给b每次打100块钱。


   
  1. use  bank_icbc;
  2. delete from bank_account;
  3. insert into bank_account
  4. (account_id,amount,freezed_amount)values( 'a', 50000, 0);
  5. use  bank_cmb;
  6. delete from bank_account;
  7. insert into bank_account
  8. (account_id,amount,freezed_amount)values( 'b', 100, 0);

 

正常划款 

请观察icbc和cmb的后台,从prepare为人为触发外,commit的一系列的动作都是被自动触发的。

再看数据库端

非正常划款

转帐额大于余额


   
  1. {
  2.      "account_from" :  "a",
  3.      "account_to" :  "b",
  4.      "transfer_money" :  1000000000
  5. }

来看icbc和cmb端的回滚

 看到没,rollback被自动触发。数据库端当然也没被插进数据(被回滚掉了)。

帐户不存在


   
  1. {
  2.      "account_from" :  "a",
  3.      "account_to" :  "c",
  4.      "transfer_money" :  100
  5. }

总结

我们可以通过上述的例子看到,SEATA把分布式事务的锁可以定义为最最小业务原子操作,这使得本来冗长的事务锁的开销可以尽量的小,尽快的释放原子操作从而加速了分布式事务处理的效率。

SEATA通过数据一致性、尽可能少破坏业务代码、高性能这三者关系中进行了一个取舍,它付的代价就是使用netty通讯实现了异步消息回调+spring aop,这个对服务器的硬件要求很高。当服务器的硬件如果跟不上的话,你会发现部署一个SEATA简直是要了你的老命了,很多网上的网友也都说过,我部署了一个SEATA比原来竟然慢了8倍。这倒不是说这个框架不好,只是它的开销会比较大。当然,在现今硬件越来越廉价的情况下,要保证数据的最终一致完整性,总要有适当的付出的。


转载:https://blog.csdn.net/csdnnews/article/details/104204876
查看评论
* 以上用户言论只代表其个人观点,不代表本网站的观点或立场