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

Understanding Spring Cloud Release Versions

Spring folks do a great job of releasing lots of quality projects. One of them we have been using is …

spring-cloud spring-cloud-config
Disable Spring Cloud AWS autoconfiguration for local development

I use the following Maven dependency which autoconfigures all necessary parameters to make my project work on AWS: <dependency&…

java spring maven spring-cloud
How to custom @FeignClient Expander to convert param?

Feign default expander to convert param: final class ToStringExpander implements Expander { @Override public String expand(Object value) { return value.toString(); } } …

spring spring-cloud netflix-feign
Spring Cloud | Feign Hytrix | First Call Timeout

I have a service that has uses 3 feign clients. Each time I start my application, I get a TimeoutException on …

spring-cloud hystrix spring-cloud-feign
Spring Cloud Feign Client @RequestParam with List parameter creates a wrong request

I have a Spring Clound Feign Client mapping defined as following @RequestMapping(method = RequestMethod.GET, value = "/search/findByIdIn") Resources<…

spring-cloud spring-cloud-netflix netflix-feign spring-cloud-feign feign
Netflix Ribbon and Hystrix Timeout

We are using Spring cloud in our project. We have several micro services and each has its own .yml file. …

spring-boot spring-cloud microservices hystrix netflix-ribbon
Unable to use Spring cloud to connect with AWS SES

I have made a very simple maven project using Spring Boot. I am trying to connect with AWS SES using …

spring-boot spring-cloud amazon-ses
How to properly handle expected errors in Hystrix fallback?

We have a Hystrix (1.4.x) command that looks like this (using Spring): @HystrixCommand(groupKey = "GroupKey", commandKey = "CommandKey", fallbackMethod = "myFallback") public …

java spring-boot spring-cloud hystrix
How to set custom max connection pool size in @feignclient configuration in spring

How to set custom max connection pool size in @feignclient configuration in spring , @FeignClient(name = "content-cms", configuration = ContentCmsServiceFeignConfig.class) public …

java spring-cloud spring-cloud-netflix netflix-feign feign
Request 'OPTIONS /logout' doesn't match 'POST /logout

I am studying Spring Cloud and Spring OAuth2 by decomposing the three interconnected apps in this GitHub sample. When I …

spring spring-security spring-boot spring-cloud spring-oauth2