Search⌘ K
AI Features

Develop the Resource Tier

Explore how to develop the resource tier focusing on one-to-one unidirectional relationships. Learn to build entities, data access layers, business service tiers, and JSON REST services using a test-driven approach in Java Spring.

We'll cover the following...

There are four major steps in service development

  • 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

We will follow a bottom-up approach here, starting with the entity and ending with the REST service.

Following a test-driven development ...