ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console...
时间: 2023-07-24 12:44:24 浏览: 89
显示错误信息log4j
4星 · 用户满意度95%
这个错误提示是由于在程序运行时找不到 log4j-core 的日志实现,可以通过在项目中添加 log4j-core 依赖解决这个问题。具体可以在项目的 pom.xml 文件中添加以下依赖:
```
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-core</artifactId>
<version>2.14.1</version>
</dependency>
```
如果是使用其他构建工具,可以查找相应的依赖并添加到项目中。
阅读全文