An attempt was made to call a method that does not exist. The attempt was made from the following

spring boot 整合 duboo+zookeeper报错信息以下:
org.apache.curator.utils.DefaultZookeeperFactory.newZooKeeperjava

***************************
APPLICATION FAILED TO START
***************************

Description:

An attempt was made to call a method that does not exist. The attempt was made from the following location:

    org.apache.curator.utils.DefaultZookeeperFactory.newZooKeeper(DefaultZookeeperFactory.java:29)

The following method did not exist:

    org.apache.zookeeper.ZooKeeper.<init>(Ljava/lang/String;ILorg/apache/zookeeper/Watcher;Z)V

The method's class, org.apache.zookeeper.ZooKeeper, is available from the following locations:

    jar:file:/D:/javaHj/maven/maven-repository/org/apache/zookeeper/zookeeper/3.3.3/zookeeper-3.3.3.jar!/org/apache/zookeeper/ZooKeeper.class

It was loaded from the following location:

    file:/D:/javaHj/maven/maven-repository/org/apache/zookeeper/zookeeper/3.3.3/zookeeper-3.3.3.jar


Action:

Correct the classpath of your application so that it contains a single, compatible version of org.apache.zookeeper.ZooKeeper

解决方法:
只须要在zkclient中去除zookeeper依赖git

<dependency>
            <groupId>com.github.sgroschupf</groupId>
            <artifactId>zkclient</artifactId>
            <version>0.1</version>
            <exclusions>
                <exclusion>
                    <groupId>org.apache.zookeeper</groupId>
                    <artifactId>zookeeper</artifactId>
                </exclusion>
            </exclusions>
        </dependency>