Java’s missing TreeMap
One thing I have always found lacking in Java collections/containers is TreeMap. A simple class that takes a hierarchical approach to mapping data to a node. Given a hierarchical string…
Team to Create Outside the Box
One thing I have always found lacking in Java collections/containers is TreeMap. A simple class that takes a hierarchical approach to mapping data to a node. Given a hierarchical string…
Load balancing is crucial in modern applications to distribute traffic across multiple instances of a service, ensuring high availability and fault tolerance. Spring provides robust mechanisms for load balancing, both…
Absolutely! Here’s a blog article on optimizing Spring Boot applications, aimed at those who already have some experience with the framework: Beyond the Basics: Optimizing Your Spring Boot Applications for…
When working with Spring applications, particularly those that deal with messaging, REST APIs, or data interchange, understanding message conversion is crucial. Spring provides a powerful framework for handling serialization and…
Continuing my series on advanced classes that are handy to have around when needed. I have created the UnitOfTime. This class is used to convert a number of milliseconds over…
Well I was bored one night after creating the UnitOfMemory and decided what else could be useful in the future. I came up with a UnitOfDistance to convert distances over…
Dynamic Feature Toggles with Spring Cloud Bus Feature toggles (or feature flags) are a powerful technique for managing application behavior without code deployments. They allow you to turn features on…