写点什么

Spring Boot 运行的时候提示日志错误

作者:HoneyMoose
  • 2022 年 8 月 25 日
    美国
  • 本文字数:413 字

    阅读完需:约 1 分钟

提示的错误信息为:

Caused by: java.lang.IllegalArgumentException: LoggerFactory is not a Logback LoggerContext but Logback is on the classpath. Either remove Logback or the competing implementation (class org.apache.logging.slf4j.Log4jLoggerFactory loaded from file:/C:/Users/yhu/.m2/repository/org/apache/logging/log4j/log4j-slf4j-impl/2.8.2/log4j-slf4j-impl-2.8.2.jar). If you are using WebLogic you will need to add 'org.slf4j' to prefer-application-packages in WEB-INF/weblogic.xml: org.apache.logging.slf4j.Log4jLoggerFactory

错误界面如下:

 


问题和解决

这个又是典型的 Spring Boot 版本冲突的问题。

在 Pom 文件中,可能有 Log4j 的包。

这个会导致 Spring Boot 没有办法绑定日志。

在我们的项目中就是因为绑定了下面的版本而导致的错误:

 


如果我们上面的内容从 Pom 文件中删除后,问题解决了。

 

https://www.ossez.com/t/spring-boot/14069

用户头像

HoneyMoose

关注

还未添加个人签名 2021.03.06 加入

还未添加个人简介

评论

发布
暂无评论
Spring Boot 运行的时候提示日志错误_HoneyMoose_InfoQ写作社区