Skip to content

Instantly share code, notes, and snippets.

@qijianchuan
Last active June 16, 2019 05:07
Show Gist options
  • Save qijianchuan/e3dfc543bef9f9dc19340e09caf2d388 to your computer and use it in GitHub Desktop.
Save qijianchuan/e3dfc543bef9f9dc19340e09caf2d388 to your computer and use it in GitHub Desktop.
SLF4J问题集合
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
//加载slf4j包失败;导致无法引用接口
SLF4J: Defaulting to no-operation (NOP) logger implementation
解决方案:
```<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.2</version>
</dependency>
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment