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

Support for using OpenFeign in Spring Cloud apps

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

I have an API interface where the methods are kotlin suspend methods: ```kotlin @FeignClient(path = "/api/masker", contextId = "MaskerApi", name = Const.SERVICE, configuration = [FeignConfig::class]) interface MaskerApi { @PostMapping("/mask") suspend...

icebox

Hello! I started to integrate [Spring Cloud Contract](https://spring.io/projects/spring-cloud-contract) into existing project. No problems on producer side. Base test class annotated with @WebMvcTest, so only Web Layer getting configured and has...

enhancement
waiting for votes

My issue is related to https://github.com/spring-cloud/spring-cloud-openfeign/issues/517. I found after some debugging that contrary to the situation described in that ticket, if `ApacheHttpClient` is on the classpath (in my case through...

enhancement
waiting for votes

Background ===== In December 2020, this project got support for [Spring Cloud CircuitBreaker](https://github.com/spring-cloud/spring-cloud-openfeign/commit/63a524843d3cfb9c6c1de45ca6cff5e1ea6e6a26). At the same time, [Hystrix support](https://github.com/spring-cloud/spring-cloud-openfeign/commit/63a524843d3cfb9c6c1de45ca6cff5e1ea6e6a26#diff-c296f2567f513e037087d5f9d6f44acf6752e6b066088447d99fccde837fb0cfL53-L57) was removed. Problem ===== In cases where people were creating the...

enhancement

**Is your feature request related to a problem? Please describe.** Currently, there seems to be no way to configure different circuit breakers for different Feign clients without listing all their...

enhancement

I would like to be able to use custom value objects in my feign clients. For example: ``` @FeignClient public interface MyClient { @GetMapping("/users/{userId}") User getUser(@PathVariable UserId userId); } ```...

enhancement

enhancement
waiting for feedback
icebox

Java 11 Spring Boot 2.3.10.RELEASE Spring Cloud Hoxton.SR11 Spring Retry 1.2.5.RELEASE When I create FeignClient with attribute `url`, load balancer retry doesn't work. In the previous version (Hoxton.SR10) it worked....

enhancement

See https://github.com/spring-cloud/spring-cloud-openfeign/issues/532#issuecomment-827492389

enhancement