一直卡在 Initializing Spring embedded WebApplicationContext

本文介绍了SpringBoot项目启动卡在初始化阶段的问题,原因是缺少日志框架。日志配置中错误地排除了日志依赖,导致启动报错。解决方法是移除pom.xml中对spring-boot-starter-logging的exclusion,保留spring-boot-starter依赖,从而确保日志框架在类路径中,使项目能正常启动。

描述: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>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值