JAVA开发问题之Failed to load class "org.slf4j.impl.StaticLoggerBinder"

问题描述

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.

解决办法

在pom中添加依赖

<dependency>
    <groupId>ch.qos.logback</groupId>
    <artifactId>logback-classic</artifactId>
    <version>1.2.11</version>
</dependency>

参考资料

https://www.cnblogs.com/jiabowenn/p/15680989.html

posted on 2022-03-10 23:10  白首码农  阅读(51)  评论(0编辑  收藏  举报