Spring boot Actuator Example – Integration with rest service

Spring Boot Actuator is an essential tool for managing and monitoring Spring Boot applications, providing developers with the ability to gain insights into their applications’ health, metrics, and configuration. In this article, we’ll delve into the features of Spring Boot Actuator, discuss its various endpoints, and explore how to set up and configure Actuator for … Read more

Flyweight Design Pattern

Flyweight design pattern falls under the structural design pattern category. Sometimes, our applications hit slow performances. This can be due to various reasons. Instantiating many amounts of heavy objects can be one of the very common reasons for the low system performance. This can be rectified by the flyweight pattern successfully. Flyweight pattern introduces a … Read more