SpringCloud服务消费者第一次调用出现超时问题的解决方案
Posted 自行车上的程序员
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringCloud服务消费者第一次调用出现超时问题的解决方案相关的知识,希望对你有一定的参考价值。
在第一次访问服务消费者的时候(消费者去调用服务提供者服务)会出现如下异常:
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
参考文章:http://www.tuicool.com/articles/vAr6Rb2
https://yq.aliyun.com/articles/61510
以上是关于SpringCloud服务消费者第一次调用出现超时问题的解决方案的主要内容,如果未能解决你的问题,请参考以下文章