spring-cloud-openfeign icon indicating copy to clipboard operation
spring-cloud-openfeign copied to clipboard

Support for using OpenFeign in Spring Cloud apps

Results 147 spring-cloud-openfeign issues
Sort by recently updated
recently updated
newest added
trafficstars

spring cloud :Hoxton.SR12 @PostMapping("/user/add") RpcResult\ add(@RequestBody RpcRequest\ addDTO);

waiting-for-triage

Hello. I'm creating a bean with an `ErrorDecoder` to implement a custom retry policy. I also have a `Retryer` bean. My error decoder: ```java @Bean public ErrorDecoder errorDecoder(OAuth2ClientContext oAuth2ClientContext) {...

waiting-for-triage

**Describe the bug** When using annotation `@Cacheable(value="cache-name", sync=true)` and using client from multiple threads, the cache fails on exception ``` java.util.concurrent.ExecutionException: java.lang.IllegalStateException: Recursive update at java.base/java.util.concurrent.FutureTask.report(FutureTask.java:122) at java.base/java.util.concurrent.FutureTask.get(FutureTask.java:191) at org.springframework.cloud.openfeign.FeignClientCacheTests$givenSyncCached.cacheWorksFromTwoThreads(FeignClientCacheTests.java:116)...

bug

seems we only support readTimeout for okhttp, Can we support readTimeout for FeignAutoConfiguration:HttpClientFeignConfiguration:httpClient? ------- I just noticed we actually have per-request-default options which override the httpClient-default value: > public Options()...

enhancement
help wanted

I am trying to create a custom closeablehttpclient using OpenFeign that is behind an NTLM proxy. After searching thru internet I finally discovered an example of a Closeablehttpclient that supposedly...

waiting-for-triage

**In the integration environment we need to frequently change feign client url due to some unavoidable circumstances** Deploying application everytime after change in the feign client url is not a...

enhancement
help wanted

As shown in the code below, the request attributes are passed to the thread calling the execute method through the `RequestContextHolder` (ThreadLocal) https://github.com/spring-cloud/spring-cloud-openfeign/blob/8493de9aa6038024acab81142c5cb714d1b9edfc/spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/FeignCircuitBreakerInvocationHandler.java#L124-L136 This code is from: https://github.com/spring-cloud/spring-cloud-openfeign/issues/193 And updated:...

feedback-provided

FeignClient ```java interface MyFeignClient{ @GetMapping(params = {"projection=wishSummary"}) Object get( @SpringQueryMap MyObject myObject); } ``` MyObject ```java class MyObject{ Range range; } class Range{ Integer from; Integer to; } ``` Feign...

enhancement
help wanted

I'm using Spring boot 2.4.5, Spring Cloud 2020.0.3, Java 11. Is there a way to use a Feign client accepting a `java.time.LocalDate` as an object field where it is supposed...

in progress

**Is your feature request related to a problem? Please describe.** Our spring-cloud-openfeign clients have a default configuration in a starter. Only one showed for example. `feign.client.config.default.default-request-headers.accept=application/json` In some rare cases...

waiting-for-triage