Chaos Engineering for Spring Boot Applications

In this article, we will discuss an out of box library "Spring Boot Chaos Monkey" to provide a Chaos Monkey…

2 years ago

Spring Batch – Read from CSV and write to relational DB

In Spring Batch, we often need read data from CSV file and write it into relational database or NoSQL or…

3 years ago

A Practical Example of Hexagonal Architecture in Java

Hexagonal architecture is an application design pattern. It solves some problems of the layered architecture by introducing ports-and-adapter for the…

4 years ago

Send emails in Java

Today we will discuss how to send emails from your Java app. In general, you have two main options: either…

4 years ago

Create a Data Structure GetMostFrequent of O(1)

In this article, we will discuss how to create a Data Structure with Insert, Delete and GetMostFrequent operations of O(1).…

5 years ago

Least Frequently Used (LFU) Cache Implementation

In this article, we will discuss how to design and implement a Least Frequently Used (LFU) cache in Java to…

5 years ago

Implement LRU cache algorithm in Java

In this article, we will discuss how to design and implement an LRU cache algorithm in Java to get fast…

5 years ago