OpenFeign超时

openFeign默认超时时间是1s,如果超时则会报错feign.RetryableException: Read timed out executing GET http://SPRINGCLOUD2-PROVIDER/timeout

设置超时

由于OpenFeign是整合的ribbon进行的负载均衡,所以使用ribbon进行配置超时时间即可

# 设置openFeign超时时间
ribbon:
  ReadTimeout: 5000  # 读取可用资源时间
  ConnectTimeout: 5000 # 建立连接时间

参考文献


bug生产者
20 声望0 粉丝