两个微服务之间通过feign调用时,后台抛出异常:

feign.RetryableException: Read timed out executing POST

解决方法:

在你的yml文件中添加

ribbon:  
ReadTimeout: 60000
ConnectTimeout: 60000


如图:

feign.RetryableException: Read timed out_抛出异常