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

How to ask Spring Cloud Config server to checkout configuration from specific branch?

I have following Spring cloud config application.yml: spring: application: name: configserver cloud: config: server: git: uri: https://xyz@bitbucket.…

spring git spring-mvc spring-boot spring-cloud
com.sun.jersey.api.client.ClientHandlerException: java.net.ConnectException: Connection refused: connect in Spring Boot

I am developing code from http://www.javainuse.com/spring/spring-cloud-netflix-zuul-tutorial, no customization yet. I keep getting the error mentioned …

java spring-boot spring-cloud netflix-eureka
Spring Cloud - Zuul Proxy is producing a No 'Access-Control-Allow-Origin' ajax response

Startup Appplication: @SpringBootApplication @EnableZuulProxy public class ZuulServer { public static void main(String[] args) { new SpringApplicationBuilder(ZuulServer.class).web(true).run(…

java spring spring-boot spring-cloud netflix-zuul
Can I force Eureka registrations to use an ip address instead of a hostname?

I have a standalone, embedded Eureka server powered by Spring Boot 1.2.0.RELEASE and Spring Cloud 1.0.0.RC1. I see services properly …

spring-cloud
Using Zuul as an authentication gateway

Background I want to implement the design presented in this article. It can be summarised by the diagram below: The …

spring-boot spring-cloud microservices gateway netflix-zuul
How can I change the feign URL during the runtime?

@FeignClient(name = "test", url="http://xxxx") How can I change the feign URL (url="http://xxxx") during the runtime? because …

spring-cloud spring-cloud-feign
Get failure exception in @HystrixCommand fallback method

Is there a way to get the reason a HystrixCommand failed when using the @HystrixCommand annotation within a Spring Boot …

spring spring-cloud hystrix
Using Spring Cloud Config without Git repo

Is it possible to use Spring Cloud Config without using any Git repo at all? I'm trying to test it …

java spring spring-cloud spring-cloud-config
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