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

**Describe the bug** Got the following error while starting the app: ``` Unexpected exception during bean creation; nested exception is java.lang.IllegalStateException: Body parameters cannot be used with form parameters. Warnings:...

waiting-for-triage

**Describe the bug** I use spring cloud openfeign with version 2.1.2RELEASE. I find in some cases httpClient config will be invalid. **why** I guess reason why config invalid is `FeignAutoConfiguration`...

in progress

hello,I want to set common fallback in circuitbreaker when use feign and resiliense4j,not add @fallback in every @FeignClient. Now I rewrite FeignCircuitBreaker class and FeignCircuitBreakerInvocationHandler class.I want to set in...

waiting-for-triage

**Is your feature request related to a problem? Please describe.** As title says **Describe the solution you'd like** As title says **Describe alternatives you've considered** As title says **Additional context**...

enhancement

FeignClient with `@SpringQueryMap`, but changing the parameter name using the `@Param`. My dependencies: ```java org.springframework.cloud spring-cloud-dependencies Hoxton.SR12 org.springframework.cloud spring-cloud-starter-openfeign ``` **FeignClient** ```java @FeignClient(name = "myfeignclient", url = "${api.url}") public interface...

in progress

See https://github.com/OpenFeign/feign/issues/1357 ``` $ jar --file=~/.gradle/caches/modules-2/files-2.1/org.springframework.cloud/spring-cloud-openfeign-core/3.0.0/28815173d55223dd2a1fbbe9650be3c04b71b18b/spring-cloud-openfeign-core-3.0.0.jar --describe-module No module descriptor found. Derived automatic module. [email protected] automatic requires java.base mandated contains org.springframework.cloud.openfeign contains org.springframework.cloud.openfeign.annotation contains org.springframework.cloud.openfeign.clientconfig contains org.springframework.cloud.openfeign.encoding contains org.springframework.cloud.openfeign.hateoas contains...

enhancement

Feign provides an interface called `ResponseMapper` which allows you to do processing on a response before it is decoding. This is a useful extension for pre-processing things such as response...

enhancement

**Is your feature request related to a problem? Please describe.** For my Feign Clients I need to add an RequestInterceptor which enhances the requests with an OAuth Bearer Token. I...

enhancement

**Describe the bug** During getting elements from cache, annotated by `@Cacheable` on `FeignClient`, cache get error handler execute twice. It looks like it is caused by change https://github.com/spring-cloud/spring-cloud-openfeign/pull/608. The flow...

bug