1.SLF4J: Class path contains multiple SLF4J bindings. 问题原因及解决方法。
由问题可以看出,是因为有多种SLFJ实现的绑定:logback-classic 和 slf4j-log4j12 .
因为我是引入zookeeper后才报的错,因此可以肯定是引入zookeeper后才起的jar包冲突,因此将zookeeper中的slf4j-log4j12排除掉就好。
<dependency>
<groupId>org.apache.zookeeper</groupId>
<artifactId>zookeeper</artifactId>
<exclusions>
<exclusion>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
</exclusion>
</exclusions>
</dependency>
2.缓存雪崩、穿透、击穿
https://segmentfault.com/a/1190000022029639