关于出现Failed to instantiate SLF4J LoggerFactory问题原因,解决办法

Posted liangpf

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于出现Failed to instantiate SLF4J LoggerFactory问题原因,解决办法相关的知识,希望对你有一定的参考价值。

在创建spring boot 文档进行配置的时候,因为使用spring boot 父级依赖的版本

<artifactId>spring-boot-starter-parent</artifactId>
<version>1.4.1.RELEASE</version>

使用1.4.1的版本时,有一定情况会发生Failed to instantiate SLF4J LoggerFactory问题

即不能使用SLF4J这个包,而在maven Dependencise中查找后,能看到这个包

所以处理方法分为2中

1.如果硬性要求使用1.4.1这个版本的话,就可以使用maven命令,删除该依赖包

或者在编译路径中添加Log4J的包

 slf4j-log4j12 API可到以下地址下载:http://mirrors.ibiblio.org/pub/mirrors/maven2/org/slf4j/slf4j-log4j12/1.5.2/

2.如果没有这个硬性要求的情况下,更换到其他的版本(例如1.3.1或者1.5.4)都是可以完全使用的。


以上是关于关于出现Failed to instantiate SLF4J LoggerFactory问题原因,解决办法的主要内容,如果未能解决你的问题,请参考以下文章

FAILED: HiveException java.lang.RuntimeException: Unable to instantiate org.apache.hadoop.hive.ql.me

Failed to instantiate [org.apache.ibatis.session.SqlSessionFactory]: Factory method ‘sqlSessionFact(

org.springframework.beans.BeanInstantiationException: Failed to instantiate [demo.Words]: No default

Failed to load or instantiate TagLibraryValidator class: org.apache.taglibs.standard.tlv.JstlCoreTLV

Failed to instantiate [引用 spring 配置文件的类]: Constructor threw exception; nested exception is java.lang

关于Android创建虚拟机出现Failed to allocate memory: 8解决办法