我已在Spring启动应用程序中为LDAP搜索(而非LDAP绑定)配置了LDAP连接池。这是我的LDAP配置:
@Bean
public ContextSource poolingLdapContextSource() {
PoolingContextSource poolingContextSource = new PoolingContextSource();
poolingContextSource.setDirContextValidator(new DefaultDirContextValidator());
poolingContextSource.setContextSource(ldapContextSource());
return poolingContextSource;
}
@Bean
public LdapContextSource ldapContextSource() {
LdapContextSource contextSource = new LdapContextSource();
contextSource.setUrls(ldapUrls.toArray(new String[]{}));
contextSource.setUserDn(ldapUsername);
contextSource.setPassword(ldapPassword);
contextSource.setPooled(false);
return contextSource;
}
@Bean
public LdapTemplate ldapTemplate() throws Exception {
return new LdapTemplate(poolingLdapContextSource());
}
我在application.yml中启用了调试日志记录,如下所示:
org.springframework.ldap:debug
org.springframework.ldap.pool:debug
在日志中,我看到以下内容:
17-10-10 16:11:12:976 DEBUG o.s.l.c.s.AbstractContextSource - AuthenticationSource not set - using default implementation
2017-10-10 16:11:12:976 DEBUG o.s.l.c.s.AbstractContextSource - **Not using LDAP pooling**
2017-10-10 16:11:12:976 DEBUG o.s.l.c.s.AbstractContextSource - Trying provider Urls: ldap://xxx:389 ldap://yyy:389
问题:
为什么日志说"不使用LDAP池"?
如何获得有关池的更详细日志记录,以便更深入地了解Spring何时打开新连接,存在多少活动连接等?
醇>