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 folks do a great job of releasing lots of quality projects. One of them we have been using is …
spring-cloud spring-cloud-configI use the following Maven dependency which autoconfigures all necessary parameters to make my project work on AWS: <dependency&…
java spring maven spring-cloudFeign default expander to convert param: final class ToStringExpander implements Expander { @Override public String expand(Object value) { return value.toString(); } } …
spring spring-cloud netflix-feignI 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-feignI 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 feignWe 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-ribbonI have made a very simple maven project using Spring Boot. I am trying to connect with AWS SES using …
spring-boot spring-cloud amazon-sesWe 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 hystrixHow 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 feignI 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