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).

Spring Boot + Eureka Server + Hystrix with Turbine: empty turbine.stream

I'm trying to run Spring Boot (with Spring Cloud) + Eureka Server + Hystrix Dashboard and Turbine stream, but I run into …

spring-boot groovy spring-cloud hystrix turbine
Simple Reverse Proxy with Spring Boot and Netflix Zuul

I'm looking to implement a simple reverse proxy with Spring Boot that is: Easy to add routes Ability to add …

spring-boot spring-cloud netflix netflix-zuul
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
Changing default port of eureka server using spring cloud

I got to spring-boot application, an eureka server and an eureka client. Here is my server configuration server: port: 8761 spring: …

java spring spring-boot spring-cloud spring-cloud-netflix
How can I get the Discovery Client working when using spring-cloud together with netflix Eureka?

I'm trying to make a basic project using spring cloud with the netflix addons such as Hystrix, Eureka and Ribbon …

java spring spring-cloud netflix-eureka
Unable to get EnableOauth2Sso Working -- BadCredentialsException: Could not obtain access token

I'm trying to get a simple Spring OAuth2 SSO application working and I've been unable to do so. Here's the …

spring spring-security spring-boot spring-security-oauth2 spring-cloud
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
@RefreshScope and /refresh not working

I have tried to implement spring external configurations using Config Server. It is working fine for the very first time …

spring-cloud spring-cloud-config spring-config
Why WireMock says that the Request not matches? Spring cloud contract

Wiremock logs that the following request not matches: WireMock : Request was not matched: { "url" : "/api/accounts?username=defaultuser", "absoluteUrl" : "http://…

spring-boot spring-cloud spring-cloud-netflix wiremock spring-cloud-contract
Adding the traceId from Spring Cloud Sleuth to response

I am currently implementing Spring Cloud Sleuth in our project. I have a requirement to add the traceId to the …

spring-cloud spring-cloud-sleuth