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).
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-eurekaI 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-zuulI 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-feignI 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-retryI'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-netflixI 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-zuulI 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-configi 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-feignI'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-feignMost 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