尚硅谷SpringCloud框架开发教程(SpringCloudAlibaba微

p55,在cloud-consumer-feign-hystrix-order80的yml文件中feign.hystrix.enabled设置为true时。会将标注@FeignClient的服务方法设置最大响应时间为1s
解决方法:
把 feign.hystrix.enabled 设置为false
并设置 ribbon.ReadTimeout 和 ribbon.ConnectTimeout
示例:
ribbon:
ReadTimeout: 4000
ConnectTimeout: 4000
feign:
hystrix:
enabled: false