February 2019
Intermediate to advanced
442 pages
11h 46m
English
The Spring Data module provides an implementation of DAO, with the aim of making data access consistent for various data providers. This brings the great flexibility of switching the underlying persistence technologies without much effort. Eventually, this will make the system loosely coupled.
Spring Data allows for exchanging the data with the persistence layer in an object-oriented manner, meaning that we can perform CRUD operations with entity class objects. Needless to say, the Spring Data LDAP module also facilitates the feature of dealing with the LDAP server in the form of the model class object. So, the first thing is to define the model (entity) class that represents the user data that we defined in the LDAP server, ...