feign
feign copied to clipboard
Feign makes writing java http clients easier
### Description The `method` tag added by `feign-micrometer` is the method name of the interface, not the http method. For example, metrics for requests made with the following client: ```...
In my current project, we use a filter to change the micrometer Meter to expose histogram information to be able to calculate percentiles easily. Usually, this is very helpful to...
For now working with response scan be do via two ways: ``` import feign.Response @RequestLine("GET /dtos") public MyDto dtos() @RequestLine("GET /dtos") public Response dtos() ``` But what if I need...
I have an API that looks something like this : ```java @GetMapping("demo") public String demo(PageParam pageParam, Query query){ return "success"; } ``` I wish I could call this in feign...
When devtools is integrated into a project with openfeign, the project cannot be started and an error is reported: cannot access its superclass org springframework. cloud. openfeign. HystrixTargeter
Hi Team, I have started using OpenFeign with Spring boot as a part of one of my project's requirements. Previously I was working on Spring boot version of springBootVersion =...
Everything above 299 is considered an error, which is plainly incorrect. To get around this I had to: 1) add an error decoder 2) throw a special exception for 3xx...
I am trying to use a feign.RequestInterceptor to add headers on the fly, these headers values are simple json. Example : ``` public void apply(RequestTemplate template) { template.header("dummy", "{\"A\":{\"B\":\"C\"}}"); }...
It would be nice having a method to access @Param annotated parameters within an Interceptor. Currently @Param template variables are only applied to header, requestline or the body. As example...
Will be great if Retrofit will generate interfaces implementation at compile time. Something like Micronaut does. https://github.com/micronaut-projects/micronaut-core Micronaut uses Ahead of Time (AOT) compilation to pre-compute your applications requirements at...