1. 在启动项目的时候,控制台出现如下警告信息
2. 主要是因为Zookeeper包中,slf4j-log4j12和log4j冲突了,需要处理一下
<!--ZooKeeper注册中心依赖-->
<dependency>
<groupId>com.101tec</groupId>
<artifactId>zkclient</artifactId>
<version>0.10</version>
</dependency>
3. 在服务提供者和消费中的pom.xml文件的ZooKeeper依赖中添加如下内容
<!--zookeeper注册中心-->
<dependency>
<groupId>com.101tec</groupId>
<artifactId>zkclient</artifactId>
<version>0.10</version>
<exclusions>
<exclusion>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</exclusion>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
4. 再次启动查看成功解决