继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Eureka错误解决方法

pm1024
关注TA
已关注
手记 1
粉丝 0
获赞 0

Eureka错误解决方法

security.basic.enabled 配置过时或不可用

默认情况下:
用户名:user
密码:启动应用在控制台会输出,如下图:
security密码

也可以通过如下属性配置:
spring.security.user.name
spring.security.user.password
如果想要关闭验证功能:

简单粗暴方法:
把 Security包从pom.xml中移出去
科学一点的:
在Application启动类上(或者任意@Configure配置类上)增加如下注解:

@EnableAutoConfiguration(exclude = {    org.springframework.boot.autoconfigure.security.servlet.SecurityAutoConfiguration.class})

defaultZone 配置

图片描述

eureka 中心与服务需要配置一样的地址

禁用Eureka作为客户端注册

eureka.client.register-with-eureka=false 
eureka.client.fetch-registry=false

超时问题

com.netflix.hystrix.exception.HystrixRuntimeException: api timed-out and no fallback available. 超时问题
或者 Read timed-out 错误
在 yml中加入

hystrix:
 command:
  default:
   execution:
    isolation:
     thread:
      timeoutInMilliseconds: 16000

或者

hystrix:
 metrics:
  enabled: true
 command:
  default:
   execution:
    isolation:
     thread:
       timeoutInMilliseconds: 16000

包引用

<!--这个依赖千万不能省略-->
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-eureka</artifactId>
</dependency>

扫码加入QQ群
微信扫码加好友

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP