The Best Fluffy Pancakes recipe you will fall in love with. Full of tips and tricks to help you make the best pancakes.

Category Java

Introduction to Spring Batch

spring-batch

A lot of corporate applications need bulk processing to carry out business operations in mission-critical settings. These business operations include: Spring Batch is a lightweight, comprehensive batch framework that is designed to develop robust batch applications. It is built upon…

Spring Boot AutoConfiguration

spring-boot-autoconfig

Spring Boot is a tool that makes developing web applications and microservices with Spring Framework faster and easier through Autoconfiguration, taking an opinionated approach to configuration and the ability to create standalone applications. But what is Autoconfiguration and what it…

Spring Security with JWT

spring-security-jwt

In this article, we will continue with our learning of spring security and will see how to implement spring security with JWT token-based authentication. If you are new to spring security, I highly recommend you go through the basics of…

JPA Relationships in Spring Boot: A Complete Guide

jpa-relationship-mapping

In this article, we will learn how to implement different types of relationships between entities using Spring Boot JPA. We will walk through all three major relationship types: All examples use Lombok to reduce boilerplate code. If you’re not familiar…

Reducing Boilerplate code in Java Application

lombok-example

One of the most criticized things about JAVA is how verbose it is. This is especially true about some simple POJO classes that are only used to store some data or for transferring data from one layer of your application…