前面 为了使用 j2cache pom中导入了
<dependency><groupId>net.oschina.j2cache</groupId><artifactId>j2cache-core</artifactId><version>2.8.4-release</version>
</dependency><dependency><groupId>net.oschina.j2cache</groupId><artifactId>j2cache-spring-boot2-starter</artifactId><version>2.8.0-release</version>
</dependency>原文链接:https://blog.csdn.net/weixin_45966674/article/details/137143992
但是启动时会出现异常
关键信息是 Class path contains multiple SLF4J bindings
简单说 j2cache 的日志 与默认的 SLF4J日志发生了冲突
在日志的引入部分下面加上
<exclusions><exclusion><groupId>org.slf4j</groupId><artifactId>slf4j-simple</artifactId></exclusion>
</exclusions>
启动后就不会报错啦