描述:Spring Boot项目启动不了,一直卡在 Initializing Spring embedded WebApplicationContext,看启动日志,找到 ERROR StatusLogger Log4j2 could not find a logging implementation. Please add log4j-core to the classpath. Using SimpleLogger to log to the console… ,其实是 pom 依赖包的问题,因为项目中没有引入日志框架,却 exclusion 中排除了日志,去掉exclusion即可正常启动
-
错误引入
org.springframework.boot spring-boot-starter compile org.springframework.boot spring-boot-starter-logging
去掉 exclusion,就可以正常启动,如下
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
<scope>compile</scope>
</dependency>
本文介绍了SpringBoot项目启动卡在初始化阶段的问题,原因是缺少日志框架。日志配置中错误地排除了日志依赖,导致启动报错。解决方法是移除pom.xml中对spring-boot-starter-logging的exclusion,保留spring-boot-starter依赖,从而确保日志框架在类路径中,使项目能正常启动。

1939

被折叠的 条评论
为什么被折叠?



