MicroServices – DTO to Entity & Entity to DTO Mapping – Libraries Comparison

Overview: In this article, I would like to show you the performance of few libraries when we do the Entity to DTO conversion or vice versa. Goal: I have an Entity class as shown here. public class Car { private long id; private String make; private int numOfSeats; private Date releaseDate; private Engine engine; //getters […]

Kafka – Creating Simple Producer & Consumer Applications Using Spring Boot

Overview: In the previous article, we had discussed the basic terminologies of Kafka and created local development infrastructure using docker-compose. In this article, I would like to show how to create a simple kafka producer and consumer using Spring-boot. Prerequisite: Java 8 or above installed Kafka is up and running Goal: Aim of this post

Kafka – Creating Simple Producer & Consumer Applications Using Spring BootRead More »