「Spring MVC」LdapTemplateを初期化するサンプルコード

サンプルコード:
private static final LdapTemplate template;
static {
LdapContextSource cs = new LdapContextSource();
cs.setCacheEnvironmentProperties(false);
cs.setUrl(“ldap://172.17.2.200:10389");
cs.setBase(“dc=mzone,dc=cc");
cs.setAuthenticationSource(new AuthenticationSource() {
@Override
public String getCredentials() {
return “mzonecc";
}

@Override
public String getPrincipal() {
return “uid=admin,ou=system";
}
});
template = new LdapTemplate(cs);
}

Java

Posted by arkgame