Develop the Data Access Tier
Explore how to develop the data access tier in Java applications by writing test-driven operations such as finding, inserting, updating, and deleting records using Hibernate's Session methods. Understand practical implementation with single table inheritance and REST integration.
We'll cover the following...
We'll cover the following...
We will start with the test case for the “find all records” operation.
“Find all records” operation
We will learn how to write the corresponding data access operation of the above test.
Insert operation
Let’s move on ...