Top "Netflix-feign" questions

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

Invalid HTTP method: PATCH > executing PATCH : Caused by: feign.RetryableException:

we are using netflix feign to make call to restful web service. For patch request it looks like PATCH request …

netflix-feign
404 while using Spring cloud FeignClients

This is my setup: First service(FlightIntegrationApplication) which invoke second service(BaggageServiceApplication) using FeignClients API and Eureka. Project on github: …

spring spring-boot spring-cloud netflix-eureka netflix-feign
Does Feign retry require some sort of configuration?

I just tried to do a attempted a seamless upgrade of a service in a test setup. The service is …

spring-cloud netflix-feign
Spring boot load balancing

I am working on a spring boot application. I want to know how I can place load balancer in front …

spring-boot cluster-computing netflix netflix-eureka netflix-feign
'Too many body parameters' Exception on Feign Client

I am using Springs Feign Client functionality to communicate from one micro service to another. Now, the called service exposes …

java spring rest netflix-feign
Get headers feign netflix

I'm using netflix feign to communicate microservices. So my Microservice A has an operation 'OperationA' which is consumed by the …

java web-services spring-cloud-netflix netflix-feign
Setting request timeout with Netflix Feign and Hystrix

I'm creating a REST client using Feign. I've got my calls working, but I want to add some timeout support, …

hystrix netflix-feign
Feign - URL encode path params

This is my contract, @RequestLine("GET /products/{id}") @Headers({"Content-Type: application/json"}) ApiResponse getProduct(@Param("id") String productId) throws Exception; …

spring-boot netflix-feign feign
How to Cache HTTP Requests made with Netflix's Feign library in a Java Spring app

In a spring boot application using Netflix's Feign to make HTTP requests to a service, is there an easy way …

spring caching netflix-feign spring-cloud-netflix spring-cloud-feign
How to custom @FeignClient Expander to convert param?

Feign default expander to convert param: final class ToStringExpander implements Expander { @Override public String expand(Object value) { return value.toString(); } } …

spring spring-cloud netflix-feign