ListUtils.safe()
Sometimes you need to guarantee a list is safe to use. A simple method can make sure your safe to use the list, or have an empty list that would…
Team to Create Outside the Box
Sometimes you need to guarantee a list is safe to use. A simple method can make sure your safe to use the list, or have an empty list that would…
In the world of microservices, Spring Cloud Config provides a centralized way to manage externalized configurations for your applications. But what about sensitive data like database passwords or API keys?…
Spring Cloud Circuit Breaker provides a powerful abstraction for implementing the circuit breaker pattern in your microservices. At the heart of this abstraction lies the CircuitBreakerFactory, a key component that…
Standard isEmpty() and notEmpty() methods for a ListUtils class. Nothing fancy, just simple methods and functionality. See the entire ListUtils series.
Modern applications, especially in a microservices architecture, often require interaction with multiple databases. This is particularly common with NoSQL databases like MongoDB, where different services might have their own dedicated…
Latitude and Longitude implementation for Geo API.
Spring Cloud Circuit Breaker provides an elegant way to handle failures in distributed systems by employing the circuit breaker pattern. A crucial aspect of this pattern is the fallback mechanism,…