天天看點

java ldap 連接配接池_java - 如何驗證Spring LDAP連接配接池配置? - 堆棧記憶體溢出

我已經在Spring Boot應用程式中為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:調試

org.springframework.ldap.pool:調試

在日志中,我看到以下内容:

17-10-10 16:11:12:976 DEBUG oslcsAbstractContextSource - AuthenticationSource not set - using default implementation 2017-10-10 16:11:12:976 DEBUG oslcsAbstractContextSource - **Not using LDAP pooling** 2017-10-10 16:11:12:976 DEBUG oslcsAbstractContextSource - Trying provider Urls: ldap://xxx:389 ldap://yyy:389

問題:

為什麼日志顯示“不使用LDAP池”?

如何擷取有關池的更詳細的日志記錄,如何更深入地了解何時Spring打開新連接配接,存在多少活動連接配接等?