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

Hi, I wrote this PR because the load balancer client retry properties did not work as expected. I have loadbalancer properties as below (1 default, 1 individual clients) ```yml spring.cloud.loadbalancer:...

waiting-for-triage

Fix issue [749](https://github.com/spring-cloud/spring-cloud-openfeign/issues/749)

waiting-for-triage

**Describe the bug** After the bug ([Read timeout from application properties is not used when client is configured ](https://github.com/spring-cloud/spring-cloud-openfeign/issues/324) ) was fixed in [v2.2.4.RELEASE](https://github.com/spring-cloud/spring-cloud-openfeign/releases/tag/v2.2.4.RELEASE), connect timeout and readtimeout of [LoadBalancerFeignClient](https://github.com/spring-cloud/spring-cloud-openfeign/blob/2.2.x/spring-cloud-openfeign-core/src/main/java/org/springframework/cloud/openfeign/ribbon/LoadBalancerFeignClient.java#L97)...

waiting-for-triage

**Describe the bug** spring-cloud-openfeign-core-3.1.3.RELEASE if super class define serialVersionUID and some class extends this super class and use "@SrpingQueryMap" to send request will throw "Duplicate key" Exception. **Sample** public class...

waiting-for-triage

**Assumptions** There is an endpoint with `byte[]` parameter. E.g. photo parameter in following snippet. ```java // byte[] parameter @RequestLine("POST /send_photo") @Headers("Content-Type: multipart/form-data") void sendPhoto (@Param("is_public") Boolean isPublic, @Param("photo") byte[] photo);...

bug

Based on https://github.com/spring-cloud/spring-cloud-commons/pull/1135...

enhancement

Replicate problem: Pom relevant deps: ``` org.springframework.cloud spring-cloud-dependencies 2022.0.4 pom import org.springframework.cloud spring-cloud-starter-openfeign io.github.openfeign feign-hc5 ``` Config in `application-local.properties` ``` feign.url=https://subdomain.address.com/endpoint ``` Client: ``` @FeignClient(name = "test-client", url = "${feign.url}")...

waiting for feedback

**Describe the bug** I have 2 implementations of `ResponseInterceptor`, both fail to trigger in `4.1.0`. If I remove one of them, then it works. ``` @Component public class AuditorGatewayResponseInterceptor implements...

enhancement
for major release