Fading Coder

An Old Coder’s Final Dance

Building Service Registration and Discovery with Spring Boot and Spring Cloud Eureka

Overview Eureka, created by Netflix, is a registry for service discovery in microservice architectures. Each provider registers itself with Eureka, while consumers query Eureka to locate instances. Although Netflix has ended active maintenance of Eureka 2.x, the Eureka 1.x implementation in Spring C...

Distributed Locking with Redis in Spring Boot using Spring Integration

This guide shows how to integrate Redis with Spring Boot to build a lightweight distributed locking mechanism using Spring Integration’s RedisLockRegistry. It also touches on the internal design so you can tune behavior and avoid common pitfalls. Why Redis-based distributed locks When multiple appli...