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

前端 未结 3 672
时光取名叫无心
时光取名叫无心 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条回答
  •  天涯浪人
    2021-01-25 02:32

    This is because of spring and cloud version not compatible.

    
    org.springframework.boot
    spring-boot-starter-parent
    2.1.3.RELEASE
     
    
    

    The version of the parent should be an upgrade one or the same as cloud version.

    
    org.springframework.cloud
    spring-cloud-starter-oauth2
    2.1.3.RELEASE
    
    

提交回复
热议问题