spring-cloud-openfeign
spring-cloud-openfeign copied to clipboard
Support for using OpenFeign in Spring Cloud apps
The following is a feign interface I defined, I want to receive all the form request parameters through `Map`, which can run correctly in springmvc ```java @PostMapping(path = "/requestMap", consumes...
We are trying to use Feign with Resilience4j, but without the `@EnableFeignClients` annotation. When trying to use the `circuitBreakerFeignBuilder` Bean created in https://github.com/spring-cloud/spring-cloud-openfeign/blob/c53d5565cb5d5c32e73a1b07bf835441a4c51132/spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/FeignClientsConfiguration.java#L232 to create Feign clients (via the `target`...
Bumps [com.fasterxml.jackson.dataformat:jackson-dataformat-smile](https://github.com/FasterXML/jackson-dataformats-binary) from 2.19.0 to 2.19.1. Commits ea2fe85 [maven-release-plugin] prepare release jackson-dataformats-binary-2.19.1 8fb1b5b Prep for 2.19.1 eb550ff Improve #599 test f7ede19 Add failing ("tofix") test for #599 a2384dd Manual pom.xml...
Bumps [com.fasterxml.jackson.dataformat:jackson-dataformat-smile](https://github.com/FasterXML/jackson-dataformats-binary) from 2.19.0 to 2.19.1. Commits ea2fe85 [maven-release-plugin] prepare release jackson-dataformats-binary-2.19.1 8fb1b5b Prep for 2.19.1 eb550ff Improve #599 test f7ede19 Add failing ("tofix") test for #599 a2384dd Manual pom.xml...
This is in line with the removal of OkHttp support in all Spring portfolio projects.
**Describe the bug** I'm using the compression feature of the spring-cloud-openfeign library. However, I can see that the response compression is not working because the Accept-Encoding header is not being...
**Is your feature request related to a problem? Please describe.** The same interface behaves completely differently in my projects. In one case, it throws a FeignException$ServiceUnavailable exception, while in the...
An error occurred when I overwrote the headers using RequestInterceptor. ``` org.springframework.cloud spring-cloud-starter-openfeign 2.1.2.RELEASE compile ``` RequestInterceptor.java ``` @Configuration @Slf4j public class FeignHeadConfiguration implements RequestInterceptor { @Override public void apply(RequestTemplate...
**Describe the bug** I would like to report the following behavior: when using feign.Response in @FeignClient with Transfer-Encoding: chunked response header, the HTTP connection is not getting released back to...