feign icon indicating copy to clipboard operation
feign copied to clipboard

Feign makes writing java http clients easier

Results 274 feign issues
Sort by recently updated
recently updated
newest added

### 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...

waiting for votes
proposal

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...

help wanted
documentation

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\"}}"); }...

question
feedback provided

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...

waiting for votes
proposal

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...

proposal
feign-12