seata启动报错:no available service ‘null’ found, please make sure registry config correct和no available server to connect

启动项目,发现控制台一直打印这段话

no available service 'null' found, please make sure registry config correct

修改很久没有成功,在网上看到这篇文章,终于解决了。

原来是我pom文件seata的seata版本是1.2.0,我下在的seata版本为0.9.0

<dependency>
	<groupId>io.seata</groupId>    
	<artifactId>seata-all</artifactId>    
	<version>1.2.0</version>
</dependency>

然后修改pom文件的版本为0.9.0

<dependency>
	<groupId>io.seata</groupId>    
	<artifactId>seata-all</artifactId>    
	<version>0.9.0</version>
</dependency>

这个问题 终于解决了。

启动之后又报另外一个错误了

no available server to connect

意思就是,没有可用的服务器连接。 看了网上的文章, 原因找到了,是我在配置file.conf的时候把my_test_tx_group对应value的值改成了自定义的,然而在注册的register.conf里面没有改还是default 。

然后我把file.conf中的my_test_tx_group改为default,再把tx-service-group改为my_test_tx_group,然后重启项目,终于启动成功

spring:
  application:
    name: seata-order-service
  cloud:
    alibaba:
      seata:
        # 自定义事务组名称需要与seata-server中的对应
        tx-service-group: my_test_tx_group #因为seata的file.conf文件中没有service模块,事务组名默认为my_test_tx_group,service要与tx-service-group对齐,vgroupMapping和grouplist在service的下一级,my_test_tx_group在再下一级
        service:
          vgroupMapping:
            #要和tx-service-group的值一致
            my_test_tx_group: default
Logo

腾讯云面向开发者汇聚海量精品云计算使用和开发经验,营造开放的云计算技术生态圈。

更多推荐