SpringCloud: Feign超时时间配置

在配置类增加一个Bean

    @Bean
    Request.Options getRequestOptions(){
        return new Request.Options(3000,5000);
    }

你可能感兴趣的:(SpringCloud,java)