feign
feign copied to clipboard
Feign makes writing java http clients easier
My team is using the Spring framework and RestTemplate to make client calls. We would like to move from RestTemplate to Feign. We currently use RestTemplate.exchange(...) to return a response...
Observed on versions: 11.2, 11.4 Not reproducible on version: 10.1.0 When passing a JSON string as `@Param` to `@Headers` the string gets truncated. Example: ``` {"some": "value", "other": "value"} ```...
When the Feign annotated interface (or class passed to the builder) contains methods that are not intended to be invoked by a web request (i.e. not annotated with RequestMapping), Feign...
I want to know if openfeign combined with eureka is suitable for IPV6 scenarios
I'm using Feign and Spring annotations, I have a request that expects to accept "text/plain". ```java @PostMapping(value = "/demo", consumes = "application/json", produces="text/plain") public String demo(@RequestBody List ids); ``` But,...
Hello! Didn't find in your documentation information about support SSE. Can Feign client was sse client?
Sometimes, the timeout time of an HTTP interface of a dependent service needs to be very long and is not uniform. You do not want to pass Options through parameters,set...
## I want to set the requestTemplate header value to an array, but an error occurs ## ```java public class FeignConfig implements RequestInterceptor { @Override public void apply(RequestTemplate requestTemplate) {...
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...
There are 3 instances of the same project started on eureka. I want to call all the interface of 3 instances by one feign interface. ``` @FeignClient(value = "project-test") public...