通过Options可以配置连接超时时间和读取超时时间,配置如下
import feign.Request;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
public class FeignConfiguration {
/**
* 配置接口调用连接超时时间合读取超时时间
* Options的第一个参数时连接超时时间(ms),默认值是10*1000
* 第二个是取超时时间(ms),默认是60*1000
* @return
*/
public Request.Options options(){
return new Request.Options(5000,10000);
}
}