ericren edited a comment on issue #8072:
URL: https://github.com/apache/dubbo/issues/8072#issuecomment-866472289
@AlbumenJ 谢谢。
我目前的解决方案是:dubbo升级到2.7.12,curator升级到4.2.0,排除curator本身的zk版本,引用了自己的3.4.8的zk版本
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<version>3.4.8</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-recipes</artifactId>
<version>4.2.0</version>
<exclusions>
<exclusion>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
</exclusion>
</exclusions>
</dependency>
另外,还发现一点:用过2.7.9的,在zookeeper目录下,找到/dubbo/config,下面有个mapping目录,这个在用2.7.12前要删除,否则会报错。

--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]