-
-
Save qijianchuan/e3dfc543bef9f9dc19340e09caf2d388 to your computer and use it in GitHub Desktop.
SLF4J问题集合
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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