Files
spring-data-examples/ldap/example
Oliver Gierke d854c6d084 #342 - Expanded copyright headers to 2018.
Removed trailing whitespace in touched files.
2018-02-22 11:42:57 +01:00
..

Spring Data LDAP - Example

This project contains samples of Spring Data (LDAP).

public interface PersonRepository extends CrudRepository<Person, Name> {

  List<Person> findByUid(String uid);

  List<Person> findByLastnameStartsWith(String prefix);
}

The test cases in PersonRepositoryIntegrationTests show basic interaction to search, create and modify objects stored in a LDAP repository.