Search⌘ K

Develop the Resource Tier

Explore how to develop the resource tier in a Java application by implementing one-to-many unidirectional relationships. Understand how to create entities, data access layers, business services, and REST controllers, while managing entity relationships and orphan removal for robust data management.

We'll cover the following...

The next step is the real service development, which involves four main steps:

  • Creating the entity
  • Creating the data access tier
  • Creating the business service tier
  • Creating the JSON-based REST facility

We will start with the entity to the REST service.

First, we ...