Functional Controllers in Spring MVC 1. Introduction Spring 5 introduced WebFlux, a new framework that lets us build web applications using the reactive programming model. In this tutorial, we’ll see how we can apply this programming model to functional controllers in Spring MVC. 2. Maven Setup We’ll be using Spring… Continue Reading spring-mvc-functional-controllers

Spring JPA – Multiple Databases 1. Overview In this tutorial, we’ll implement a simple Spring configuration for a Spring Data JPA system with multiple databases. Further reading: Spring Data JPA – Derived Delete Methods Learn how to define Spring Data deleteBy and removeBy methods Read more → Configuring a DataSource… Continue Reading spring-data-jpa-multiple-databases

Introduction To Kryo 1. Overview Kryo is a Java serialization framework with a focus on speed, efficiency, and a user-friendly API. In this article, we’ll explore the key features of the Kryo framework and implement examples to showcase its capabilities. 2. Maven Dependency The first thing we need to do… Continue Reading kryo