首页 > 编程语言> > Spring Boot專案啟動報錯com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connec
Spring Boot專案啟動報錯com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connec
作者:互联网
原文链接:https://www.itread01.com/content/1544322263.html
報錯內容:
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
重啟專案即可
标签:java,api,Spring,啟動,eureka,client,false,com 来源: https://blog.csdn.net/iccolor2014/article/details/98754036