-
Book Overview & Buying
-
Table Of Contents
Spring System Design in Practice
By :
SQL databases are, still to this day, the most important storage type for any kind of API. Since non-reactive implementations are so commonly used across the industry, let’s start with this option to help you understand the various ways to implement persistence layers in Spring.
The Spring project that provides excellent features for whatever data architecture you would like to implement is Spring Data. Let’s see how it works for non-reactive, SQL database persistence.
This chapter code will also be done on top of the RentalProperty Spring application. The full code can be found at https://github.com/PacktPublishing/Spring-System-Design-in-Practice/tree/main/chapter-07.
Because we are interested in enabling our application as fast as we can for coding our data persistence repositories, we will enable in-memory databases as a starting point for our development. The first step...