com.netflix.discovery.shared.transport.TransportException: Cannot execute request on any known server

后端 未结 10 1681
眼角桃花
眼角桃花 2020-12-30 19:32

I am very new to the microservices and trying to run the code from link: https://dzone.com/articles/advanced-microservices-security-with-spring-and-oa . When I simply run th

10条回答
  •  星月不相逢
    2020-12-30 20:21

    This particular message is just a warning. Your application is attempting to register with Eureka but Eureka is not responding. You can either start an instance of Eureka or disable the automatic registration by adding the following to your application.yml.

    eureka:
      client:
        register-with-eureka: false
    

提交回复
热议问题