springcloud 服务调用的时候报错:
com.netflix.hystrix.exception.HystrixRuntimeException: CouponTrialApiClient#varietyModelTrial(TrialQuery) timed-out and no fallback available.解决办法 1、pom文件
2、启动类上添加注解@EnableHystrix 3、yml文件org.springframework.cloud spring-cloud-starter-netflix-hystrix
过期时间为6秒
hystrix.command.default.execution.isolation.thread.timeoutInMilliseconds = 6000解释
feign调用默认为1秒,但是很多时候调用会超过1秒,因此我们适当的延长调用时间



