Failed to load class "org.slf4j.impl.StaticLoggerBinder".

一、问题

Failed to load class "org.slf4j.impl.StaticLoggerBinder".

二、问题分析

slf4j是日志打印的工具类,只在pom.xml中添加了依赖配置。错误说是加载“org.slf4j.impl.StaticLoggerBinder”失败,翻阅官网找到问题描述:

This error is reported when the org.slf4j.impl.StaticLoggerBinder class could not be loaded into memory. This happens when no appropriate SLF4J binding could be found on the class path. Placing one (and only one) of slf4j-nop.jar, slf4j-simple.jar, slf4j-log4j12.jar, slf4j-jdk14.jar or logback-classic.jar on the class path should solve the problem.
简单的说就是没有slf4j-nop.jar的jar.

三、问题解决

添加slf4j-nop.jar依赖:


            org.slf4j
            slf4j-nop
            1.6.1

具体版本后,请根据自己项目的依赖版本而定,保持一致!

你可能感兴趣的:(Failed to load class "org.slf4j.impl.StaticLoggerBinder".)