Develop the Resource Tier
Explore developing the resource tier by creating entities, data access layers, business services, and JSON REST endpoints. Understand many-to-many unidirectional relationships in Java with User and Group entities, and apply annotations like @ManyToMany and @JoinTable to manage associations and data persistence.
We'll cover the following...
We'll cover the following...
This lesson is the service development, which involves the following four steps:
- Creating the entity
- Creating the data access tier
- Creating the business service tier
- Creating JSON based REST capabilities
We will begin with the entity and finish ...