美文网首页
springCloud com.sun.jersey.api.c

springCloud com.sun.jersey.api.c

作者: 逆水寻洲 | 来源:发表于2019-05-24 16:07 被阅读0次

    转自:https://www.cnblogs.com/zmblog/p/8777878.html

    1、com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused: connect

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

    原因如下:

    在默认设置下,Eureka服务注册中心也会将自己作为客户端来尝试注册它自己,所以我们需要禁用它的客户端注册行为。

    禁止方式如下:在application.properties配置文件中增加以下内容

    eureka.client.register-with-eureka=false

    eureka.client.fetch-registry=false

    如图所示:

    重新启动即可

    相关文章

      网友评论

          本文标题:springCloud com.sun.jersey.api.c

          本文链接:https://www.haomeiwen.com/subject/drknuqtx.html