Author: microideation

2

Reduce boilerplate code using Lombok plugin

One of the things I hate about Java is the ceremony around functionality. When you want to create a simple Entity class, you need to write the setters, getters, and the toString methods. This...

0

Spring boot application using Hazelcast cache

Most of the modern application requires throttling for fast response time. The most common method used is to cache the data that is frequently accessed. A caching layer provides this functionality. When we want...