2. 安装 Zookeeper

查看安装 文档,了解有关如何安装 Zookeeper 的说明。spring-doc.cn

Spring Cloud Zookeeper 在后台使用 Apache Curator。 虽然 Zookeeper 3.5.x 仍被 Zookeeper 开发团队视为“测试版”, 现实情况是,许多用户都在生产中使用它。 但是,Zookeeper 3.4.x 也用于生产。 在 Apache Curator 4.0 之前,两个版本的 Zookeeper 都通过两个版本的 Apache Curator 提供支持。 从 Curator 4.0 开始,两个版本的 Zookeeper 都通过相同的 Curator 库受支持。spring-doc.cn

如果要与版本 3.4 集成,则需要更改 Zookeeper 依赖项 附带的 ,因此 。 为此,只需排除该依赖项并添加 3.4.x 版本,如下所示。curatorspring-cloud-zookeeperspring-doc.cn

maven
<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-zookeeper-all</artifactId>
    <exclusions>
        <exclusion>
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
        </exclusion>
    </exclusions>
</dependency>
<dependency>
    <groupId>org.apache.zookeeper</groupId>
    <artifactId>zookeeper</artifactId>
    <version>3.4.12</version>
    <exclusions>
        <exclusion>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-log4j12</artifactId>
        </exclusion>
    </exclusions>
</dependency>
Gradle
compile('org.springframework.cloud:spring-cloud-starter-zookeeper-all') {
  exclude group: 'org.apache.zookeeper', module: 'zookeeper'
}
compile('org.apache.zookeeper:zookeeper:3.4.12') {
  exclude group: 'org.slf4j', module: 'slf4j-log4j12'
}