Top "Spring-cloud-netflix" questions

Spring-Cloud-Netflix provides Netflix OSS integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms.

Load balancer does not have available server for client

I'm trying to use Feign client. Below is my feing client: import com.eprogrammerz.examples.domain.Movie; import org.springframework.…

spring spring-boot spring-cloud-netflix netflix-feign
Using @Headers with dynamic values in Feign client + Spring Cloud (Brixton RC2)

Is it possible to set dynamic values to a header ? @FeignClient(name="Simple-Gateway") interface GatewayClient { @Headers("X-Auth-Token: {token}") @RequestMapping(method = …

spring spring-cloud spring-cloud-netflix
How to write integration tests with spring-cloud-netflix and feign

I use Spring-Cloud-Netflix for communication between micro services. Let's say I have two services, Foo and Bar, and Foo consumes …

java netflix-eureka spring-cloud-netflix wiremock feign
Eureka and Kubernetes

I am putting together a proof of concept to help identify gotchas using Spring Boot/Netflix OSS and Kubernetes together. …

spring-boot kubernetes microservices netflix-eureka spring-cloud-netflix
How to check two condition while using @ConditionalOnProperty or @ConditionalOnExpression

I need to check that two conditions are satisfied on a YAML property file, while creating a bean. How do …

spring-boot netflix-eureka spring-cloud-netflix
How to send POST request by Spring cloud Feign

It's my Feign interface @FeignClient( name="mpi", url="${mpi.url}", configuration = FeignSimpleEncoderConfig.class ) public interface MpiClient { @RequestMapping(method = RequestMethod.POST) …

spring-cloud-netflix netflix-feign spring-cloud-feign
Difference between @RibbonClient and @LoadBalanced

I understand @LoadBalanced indicates the Rest template should be based on Client Side Load Balancing using Ribbon and checks Eureka …

spring-boot spring-cloud-netflix netflix-ribbon
How is Spring Cloud Gateway different from Zuul?

I have been using Zuul as the edge service and API Gateway. Recently I have noticed that Spring Cloud Platform …

spring-mvc spring-cloud netflix-zuul spring-cloud-netflix spring-cloud-gateway
@EnableFeignClients and @FeignClient fail on Autowiring 'FeignContext' NoSuchBeanException

The microservice I'm writting needs to communicate to other microservices in our platform. On that attempt, the ideal solution for …

java spring-boot spring-cloud-netflix spring-cloud-feign feign
How to set custom Jackson ObjectMapper with Spring Cloud Netflix Feign

I'm running into a scenario where I need to define a one-off @FeignClient for a third party API. In this …

spring spring-mvc spring-cloud feign spring-cloud-netflix