码迷,mamicode.com
首页 > 其他好文 > 详细

note001

时间:2018-06-20 21:02:08      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:ase   repos   version   discovery   spring   try   refused   handle   配置   

spring-cloud学习BUG

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
如图所示:

重新启动即可。

 

 

server

<!-- https://mvnrepository.com/artifact/org.springframework.cloud/spring-cloud-starter-eureka-server -->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka-server</artifactId>
<version>1.4.4.RELEASE</version>
</dependency>
</dependencies>

 

note001

标签:ase   repos   version   discovery   spring   try   refused   handle   配置   

原文地址:https://www.cnblogs.com/luckzhang/p/9205426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!