Receiver class o.s.c.b.BootstrapApplicationListener$CloseContextOnFailureApplicationListener does not define or inherit an impl

前端 未结 3 674
时光取名叫无心
时光取名叫无心 2021-01-25 01:54

I\'m facing this error while running the project. I\'m unable to know the cause of the error and unable to find a solution online as well. This project is running over another l

3条回答
  •  -上瘾入骨i
    2021-01-25 02:41

    Your Spring Boot version is too old for your Spring Cloud version:

    https://github.com/spring-cloud/spring-cloud-commons/issues/552

    Spring Cloud Greenwich (2.1.x) is not compatible with spring boot 2.0.x and spring framework 5.0.x. Either update spring boot or downgrade spring cloud to Finchley.

    So please update Spring Boot to 2.1.x

    PS: searching on 'BootstrapApplicationListener$CloseContextOnFailureApplicationListener' would have lead you there straight away :-)

提交回复
热议问题