开发者

springboot3.x版本集成log4j遇到Logging system failed to initialize using configuration from‘classpath:log4问

目录
  • 如下图所示
  • 报如下的错误
  • 如何看版本冲突呢
  • 总结

如下图所示

使用最新版的springboot3.x版本,集成log4j的时候

报如下的错误

springboot3.x版本集成log4j遇到Logging system failed to initialize using configuration from‘classpath:log4问

springboot3.x版本集成log4j遇到Logging system failed to initialize using configuration from‘classpath:log4问

搜了半天,试了好多结果,最后发现可能是版本冲突ILZpGkeIc

如何看版本冲突呢

通过maven的这php个图标

springboot3.x版本集成log4j遇到Logging system failed to initialize using configuration from‘classpath:log4问

springboot3.x版本集成log4j遇到Logging system failed to initialize using configuration from‘classpath:log4问

可以看到log4j两php个版本冲突了,那么只需要保持版本一致即可,修改版本为2.21.1解决问题

<dependency>
   <groupId>orgphp.apache.logging.log4j</groupId>
   <artifactIphpd>log4j-core</artifactId>
   <version>2.21.1</version>
</dependency>

<dependency>
   <groupId>org.apache.logging.log4j</groupId>
   <artifactId>log4j-api</artifactId>
   <version>2.21.1</version>
</dependency>

如下图所示,

成功使用log4j进行日志打印

springboot3.x版本集成log4j遇到Logging system failed to initialize using configuration from‘classpath:log4问

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持编程客栈(www.devze.com)。

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新开发

开发排行榜