Skip to content

Instantly share code, notes, and snippets.

@dbazile
Forked from mpilone/SpringAdLdapTest.java
Created March 18, 2020 12:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dbazile/4ee650c2786310ec041a76338b8c7ce7 to your computer and use it in GitHub Desktop.
Save dbazile/4ee650c2786310ec041a76338b8c7ce7 to your computer and use it in GitHub Desktop.
A simple example of using Spring LDAP to authenticate a user against Active Directory.
// Setup the LDAP client (normally done via Spring context file).
LdapContextSource contextSource = new LdapContextSource();
contextSource.setUrl("ldap://adserver.mycompany.com:3268");
contextSource.setBase("DC=AD,DC=MYCOMPANY,DC=COM");
contextSource.setUserDn("readonlyuser@ad.mycompany.com");
contextSource.setPassword("password1");
contextSource.afterPropertiesSet();
LdapTemplate ldapTemplate = new LdapTemplate(contextSource);
ldapTemplate.afterPropertiesSet();
// Perform the authentication.
Filter filter = new EqualsFilter("sAMAccountName", "mpilone");
boolean authed = ldapTemplate.authenticate("OU=CorpUsers",
filter.encode(),
"user-entered-password");
// Display the results.
System.out.println("Authenticated: " + authed);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment