Files
spring-data-examples/ldap/example
2022-12-12 11:16:27 +01:00
..
2022-12-12 11:16:27 +01:00
2022-07-29 13:07:11 +02: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 an LDAP repository.