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

What is the difference between putting a property on application.yml or bootstrap.yml in spring boot?

What is the difference between putting a property on application.yml or bootstrap.yml in spring boot? In logging.config …

java spring spring-boot spring-cloud
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
Spring Cloud Configuration Server not working with local properties file

I have been playing around with the Spring Cloud project on github located here: https://github.com/spring-cloud/spring-cloud-config However …

java spring spring-cloud
How to get custom user info from OAuth2 authorization server /user endpoint

I have a resource server configured with @EnableResourceServer annotation and it refers to authorization server via user-info-uri parameter as follows: …

spring spring-security spring-boot spring-cloud spring-oauth2
Can I configure a @FeignClient url using a properties/yml file?

My goal is to create a strategy of different steps to get from a point-to-point communication between 2 components to a "…

spring-cloud netflix-feign
Spring Cloud - SQS - The specified queue does not exist for this wsdl version

I am attempting to get spring cloud to work with messaging using auto configure. My properties file contains: cloud.aws.…

spring amazon-web-services annotations amazon-sqs spring-cloud
Understanding Spring Cloud Eureka Server self preservation and renew threshold

I am new to developing microservices, although I have been researching about it for a while, reading both Spring's docs …

spring spring-cloud netflix-eureka
What's the difference between EnableEurekaClient and EnableDiscoveryClient?

In some applications, I saw people are using EnableEurekaClient. And some other example applications are using EnableDiscoveryClient. Is there any …

spring-cloud netflix-eureka
Zuul timing out in long-ish requests

I am using a front end Spring Cloud application (micro service) acting as a Zuul proxy (@EnableZuulProxy) to route requests …

spring-cloud netflix-zuul
Spring Cloud Config Server Can't locate PropertySource on startup

When I start my Spring Cloud Config Server I get the following error. Could not locate PropertySource: I/O error …

spring-boot spring-cloud