springboot + dubbo + seata 实现分布式事务

1、下载seata的demo , https://github.com/seata/seata-samples , 使用其中的springboot-dubbo-seata

 

2、下载nacos-server  ,    https://github.com/alibaba/nacos/releases

     暂不使用数据库和集群, 直接启动即可, 访问http://127.0.0.1:8848/nacos   用户名:nacos , 密码:nacos

 

3、下载seata-server ,    https://github.com/seata/seata/releases

      修改配置文件:

registry.conf

registry {
    # type配置为file
  # file 、nacos 、eureka、redis、zk、consul、etcd3、sofa
  type = "file"
  .................
}

config {
     # type配置为file
  # file、nacos 、apollo、zk、consul、etcd3
 

你可能感兴趣的:(SpringBoot,Seata)