Develop the Resource Tier
Explore the process of developing the resource tier by implementing standalone entities, data access, business service layers, and JSON-based REST services. Learn to apply test-driven development with Spring and Hibernate, handling entity creation and integration with the user interface in Java applications.
We'll cover the following...
We'll cover the following...
The service development will be divided into four major steps:
- Creating the entity
- Creating the data access tier
- Creating the business service tier
- Creating the JSON based REST service, which will be integrated with the user interface.
Let’s go over each one, starting with entity.
We will follow the Test-Driven Development (TDD) approach for developing the service tier.
First, we will write a test for each of the ...