In Spring Boot I can pass properties which will be picked for auto configuration:
- spring.ldap.url
- spring.ldap.username
- spring.ldap.password
Is there any spring.ldap.*
property to set pooled=true
to avoid using explicit LdapTemplate config?
LdapContextSource contextSource = new LdapContextSource();
contextSource.setPooled(true);