1. 程式人生 > >SpringCloud服務消費者第一次調用出現超時問題的解決方案

SpringCloud服務消費者第一次調用出現超時問題的解決方案

https://www.cnblogs.com/yangzhilong/p/6770359.html

在第一次訪問服務消費者的時候(消費者去呼叫服務提供者服務)會出現如下異常:

com.netflix.hystrix.exception.HystrixRuntimeException: TestService#hello(String) timed-out and no fallback available

解決方案是在application.properties增加如下配置資訊:

#hystrix呼叫方法的超時時間,預設是1000毫秒
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds=5000

 更絕的一個方案是直接禁用hystrix:

feign.hystrix.enabled=false

 

參考文章:http://www.tuicool.com/articles/vAr6Rb2

https://yq.aliyun.com/articles/61510

分類: SpringBoot,SpringCloud