Top "Spring-cloud" questions

Spring Cloud provides tools to quickly build common patterns in distributed systems (e.g. configuration management, service discovery, circuit breaker, intelligent routing, micro-proxy, control bus, global locks, leadership election, distributed sessions).

Eureka Server: How to achieve high availability

I'm new to spring cloud. I've read this doc and it says the client application must specify a service url: …

spring-cloud netflix-eureka
Customizing Zuul Exception

I have a scenario in Zuul where the service that the URL is routed too might be down . So the …

java spring-boot spring-cloud microservices netflix-zuul
Error Injecting FeignClient from another Project

I am having trouble auto wiring a feign client from another project. It appears that the implementation of the feign …

java spring-cloud component-scan netflix-feign
Feign client and Spring retry

I have a restful service calling an external service using Spring Cloud Feign client @FeignClient(name = "external-service", configuration = FeignClientConfig.class) …

spring spring-boot spring-cloud spring-cloud-feign spring-retry
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
Spring OAuth Authorization Server behind Spring Cloud Zuul Proxy

I am currently developing a application based on a micro service architecture. We use a API-Gateway implemented using Spring Cloud …

java spring-security spring-cloud netflix-zuul
actuator /refresh is not being provided in SpringBoot 2.0.1

I am creating a demo project for Spring-Config-Server and Spring-Config-Client. In SpringBoot 1.5.6.RELEASE everything is working fine. However, when I …

spring spring-boot spring-cloud spring-boot-actuator spring-cloud-config
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 do you allow 400 Errors to propagate when using Feign with Hystrix?

I'm building a SpringBoot microservice that calls another microservice and naturally want to use Hystrix and Feign clients, which are …

java spring spring-cloud hystrix spring-cloud-feign
Spring @EnableResourceServer vs @EnableOAuth2Sso

Most of the tutorials I've read so far uses @EnableOAuth2Sso instead of @EnableResourceServer on the API gateway. What are …

java spring spring-security spring-cloud rest-security