Recent Articles

Single Responsibility Principle Unpacked

This article explains the Single Responsibility Principle (SRP): what does it practically mean? And when and how should we apply it?

Read more

Book Notes: Mindset

TL;DR: Read this Book, when… you always wanted to know what your HR people mean when they say “we should all have a growth mindset” you are looking for a shift of your mindset towards learning you want to read stories about important people and what effects their mindset have on their environments Book Facts Title: Mindset Author: Carol S.

Read more

One-Stop Guide to Database Migration with Flyway and Spring Boot

Spring Boot simplifies database migrations by providing integration with Flyway, one of the most widely used database migration tools. This guide presents various options of using Flyway as part of a Spring Boot application, as well as running it within a CI build.

Read more
The AWS Journey Part 1: Deploying Your First Docker Image

The AWS Journey Part 1: Deploying Your First Docker Image

Amazon Web Services is a beast. It offers so many different cloud services that my natural reaction was to be intimidated.

Read more

Spring Boot Application Events Explained

To “listen” to an event, we can always write “listener” to an event as another method within the source of the event, but this will tightly couple the event source to the logic of the listener.

Read more

Multitenancy Applications with Spring Boot and Flyway

Multitenancy applications allow different customers to work with the same application without seeing each other’s data. That means we have to set up a separate data store for each tenant.

Read more