CAP Theorem Quick Overview

In computer science, the CAP theorem states that it is impossible for a distributed computer system to simultaneously provide more than two of the following three guarantees: In other words, the CAP theorem states that it is impossible to simultaneously guarantee consistency, availability, and partition tolerance in a distributed system. This means that in the … Read more

Spring Boot Commandline Runner Tutorial

Spring Boot Commandline Runner Tutorial

Overview There are times you need to do some start-up work when your Spring application launch. One of the methods is to use the CommandlineRunner interface. In this post, I’m going to show you how to use this interface to run startup tasks with flexibility. Let’s get started. Meet the CommandlineRunner interface The CommandlineRunner interface … Read more