ldap-spring-boot
ldap-spring-boot copied to clipboard
Exception
Caused by: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'userRepository': Could not resolve matching constructor (hint: specify index/type/name arguments for simple parameters to avoid type ambiguities)
public interface UserRepository extends LdapRepository<User> {
@Query("(uid={0})")
User findByUid(String uid);
}