この Gradle 依存関係を持つ Spring Boot アプリケーションがあります。
compile("org.springframework.cloud:spring-cloud-starter-eureka")
compile("org.springframework.cloud:spring-cloud-starter-feign")
compile("org.springframework.cloud:spring-cloud-starter-ribbon")
compile("org.springframework.cloud:spring-cloud-starter-hystrix")
compile("org.springframework.cloud:spring-cloud-starter-config")
また、私は Feign クライアントを持っています:
@FeignClient(name = "client")
public interface FeignService {
@RequestMapping(value = "/path", method = GET)
String response();
}
私のapplication.properties
:
client.ribbon.listOfServers = http://localhost:8081
ribbon.eureka.enabled=false
クエリ時間が 1 秒を超えると、例外が発生します。
com.netflix.hystrix.exception.HystrixRuntimeException: response timed-out and no fallback available.
私の質問は次のとおりです。カスタム Feign クライアント接続タイムアウトを設定するにはどうすればよいですか? たとえば、2 秒まで。