Top "Netflix-feign" questions

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

Mock an Eureka Feign Client for Unittesting

i am using spring cloud's eureka and feign to communicate between some services (lets say A and B). Now id …

unit-testing spring-cloud netflix-eureka netflix-feign
How to ignore SSL cert trust errors in Feign?

How can I achieve curl -k in feign client? I know I can do this. Just want to know if …

ssl netflix-feign feign
How to Set Request Headers Using a Feign Client?

We are developing a suite of Microservices using Spring Cloud framework and one of the the things that we need …

spring-mvc spring-cloud microservices netflix-feign spring-cloud-netflix
FeignClient in spring boot 2

I am trying to migrate from spring boot 1.5 tio 2.0 and faced problem: I changed version of spring-cloud-netflix-core from 1.3.4.RELEASE to 2.0.1.…

java spring spring-boot netflix-feign spring-cloud-feign
Spring Cloud: How to use Feign without Ribbon

I would like to use Feign without client-side loadbalancer Ribbon because I don't want to run Eureka, which would need …

java spring spring-cloud netflix-feign
Using spring cloud feign causes java.lang.NoClassDefFoundError: feign/Logger

I enabled my spring cloud for feignClients like this: @Configuration @EnableAutoConfiguration @RestController @EnableEurekaClient @EnableCircuitBreaker @EnableFeignClients public class SpringCloudConfigClientApplication { } But as …

spring-cloud netflix-feign
Feign Client + Eureka POST request body

I'm trying to use Feign and Eureka to forward a post request from server A to server B. Both servers …

spring rest microservices netflix-eureka netflix-feign
Differences between netflix.feign & openfeign

Introduction I recently used netflix feign along with ribbon which was quite useful. An Example of this is: @FeignClient(name = "…

java spring-cloud netflix-feign spring-cloud-feign feign
Logging request and response json payloads with Hystrix Feign

I am using Hystrix Feign with Spring Encoder. I want to log exact request (Json) payload that goes out with …

java spring spring-boot hystrix netflix-feign
spring-cloud-feign Client and @RequestParam with Date type

This time I was working with Declarative REST Client, Feign in some Spring Boot App. What I wanted to achieve …

java spring rest jackson netflix-feign