Top "Spring-cloud-feign" questions

Use this tag for question related to the use of Feign declarative REST client inside the spring cloud ecosystem.

How to POST form-url-encoded data with Spring Cloud Feign

Using spring-mvc annotations, how can I define an @FeignClient that can POST form-url-encoded?

spring-mvc spring-cloud spring-cloud-feign feign
feign.RetryableException: Read timed out executing GET

I have below architecture in my project My UI Service(Port 8080) making Feign call to Gateway Service(Port 8085). My Get …

spring-boot microservices connection-timeout spring-cloud-feign
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
SpringBoot FeignClient Method has too many paramters

im using spring-cloud's feignClient and things go wrong when there is more than one Beans paramters in my interface,error …

spring spring-cloud spring-cloud-feign
Feign Client with Spring Boot: RequestParam.value() was empty on parameter 0

I created a simple Feign Client with Spring Boot like this: @FeignClient("spring-cloud-eureka-client") public interface GreetingClient { @RequestMapping("/greeting") String greeting(@…

spring spring-cloud spring-cloud-feign
Spring Boot 2 - Unsatisfied dependency on Feign client when autowired for service

I have a pretty simple situation and I've tried a few things now and I can't find the cause of …

java spring spring-boot spring-cloud-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
What are the advantages and disadvantages of using feign over RestTemplate

I get that Feign is declarative and hence it abstracts out a lot of things for the developer. But, when …

spring-boot spring-cloud resttemplate spring-cloud-feign
Spring Cloud Feign Non blocking I/O or Asynchronous Call

I am developing microservices using Spring cloud platform where service1 calls multiple other micro services e.g. service2, service3, service 4 …

spring spring-cloud-netflix spring-cloud-feign
Spring cloud Feign OAuth2 request interceptor is not working

I am trying to create a simple REST client using spring cloud feign to consume a service which is secured …

spring-boot spring-security-oauth2 spring-cloud-netflix spring-cloud-feign