Top "Netflix-feign" questions

Feign is a java to http client binder inspired by Retrofit, JAXRS-2.0, and WebSocket.

Spring Cloud Feign Client @RequestParam with List parameter creates a wrong request

I have a Spring Clound Feign Client mapping defined as following @RequestMapping(method = RequestMethod.GET, value = "/search/findByIdIn") Resources<…

spring-cloud spring-cloud-netflix netflix-feign spring-cloud-feign feign
How to set custom max connection pool size in @feignclient configuration in spring

How to set custom max connection pool size in @feignclient configuration in spring , @FeignClient(name = "content-cms", configuration = ContentCmsServiceFeignConfig.class) public …

java spring-cloud spring-cloud-netflix netflix-feign feign
JSON response with dash in the key-name

I am using feign for my rest-calls. Unfortunately one of the responses I get looks something like this: { "customer-id" : "0123" } The …

java json jackson response netflix-feign
Spring Cloud Feign Interceptor

I have created a ClientHttpRequestInterceptor that I use to intercept all outgoing RestTemplate requests and responses. I would like to …

java maven spring-cloud netflix-feign