Question The Feign Apache HttpClient 4 is no longer supported. Official document suggest using Apache HttpClient 5 instead.

i found configuration in FeignAutoConfiguration :

``` @Configuration(proxyBeanMethods = false) @ConditionalOnClass(ApacheHttp5Client.class) @ConditionalOnMissingBean(org.apache.hc.client5.http.impl.classic.CloseableHttpClient.class) @ConditionalOnProperty(value = "spring.cloud.openfeign.httpclient.hc5.enabled", havingValue = "true", matchIfMissing = true) @Import(org.springframework.cloud.openfeign.clientconfig.HttpClient5FeignConfiguration.class) protected static class HttpClient5FeignConfiguration {

    @Bean
    @ConditionalOnMissingBean(Client.class)
    public Client feignClient(org.apache.hc.client5.http.impl.classic.CloseableHttpClient httpClient5) {
        return new ApacheHttp5Client(httpClient5);
    }

}

```

I have imported the dependency org.apache.httpcomponents.client5:httpclient5:5.21 and io.github.openfeign:feign-httpclient:12.4 in the POM file, But still cannot find feign.hc5.ApacheHttp5Client. so , could you tell me which JAR or Maven GAV provides the feign.hc5.ApacheHttp5Client.class ?

Comment From: yeziz2Z

i got it. io.github.openfeign:feign-hc5:12.4