idea springboot启动报SLF4J:Failed to load class “org.slf4j.impl.StaticLoggerBinder”
就是这么点日志,但是注意 第一行 SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
解决方案:
添加依赖包
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
<version>1.7.25</version>
<scope>compile</scope>
</dependency>