Reputation: 303
I am new and just started to explore Spring Cloud. Would like to know how to practice with examples in local (laptop). It appears to need a cloud environment. And most of them are available only for few days. So any pointers to try out features like Distributed/versioned configuration, Service registration and discovery ,Routing Service-to-service calls, Load balancing Circuit and Breakers Global locks
Upvotes: 0
Views: 85
Reputation: 1967
You can also check this blog, service discovery, routing and load balancing. Spring Cloud, Eureka and Zuul
For Distributed/versioned configuration, check this one Quick Intro to Spring Cloud Configuration
Also one example, that brings all of that together Spring Cloud Bootstrapping
Upvotes: 0
Reputation: 11189
You can check out the Spring guides where we guide you, step by step, to achieve what you have described. You can check out the link here for the Ribbon guide - https://spring.io/guides/gs/client-side-load-balancing/ and the link to all of the guides https://spring.io/guides/
Upvotes: 1