Develop the Mock User Interface
Explore how to develop a mock user interface that interacts with an in-memory catalog to manage many-to-many unidirectional relationships between User and Group objects. Understand the JavaScript methods for loading data, creating joins, checking existing relationships, and deleting connections, all within the context of a Java Spring and Hibernate application.
We'll cover the following...
We know how to develop the mock service with an in-memory catalog. Now we choose how to write the user interface, which will consume this mock service as shown in Figure 9-2.
We will discuss the “join related user” interface because the create, read, update, and delete methods for the User and Group remain the same. If you find this confusing, please download the source code and you will see ...