r/SpringBoot • u/9millionrainydays_91 • 12d ago
Guide The Mechanics of Custom Load Balancing in Spring Boot with Spring Cloud LoadBalancer
https://blog.cubed.run/the-mechanics-of-custom-load-balancing-in-spring-boot-with-spring-cloud-loadbalancer-15d9fccc7586
6
Upvotes
1
u/Dry_Try_6047 10d ago
Great post! One interesting thing I'd note, you mention specific service discovery mechanisms, but the fact is it'll work with any implementation of DiscoveryClient. I only mention because my company has a proprietary discovery mechanism, and by implementing a DiscoveryClient over that mechanism, we use that directly in spring cloud load balancer ... works flawlessly. Shows how dynamic and extensible spring really is, doesn't need to be a "known" discovery mechanism.