对于Spring Boot应用程序,我使用注释成功配置了一个Spring LdapTemplate
,包括来自application.properties的LdapContextSource
与@Value
的依赖关系。 (Woot!我找不到一个例子,所以也许这会帮助别人。)
片段(下方)设置上下文源,将其注入LdapTemplate
,并将其自动装入我的DirectoryService。
有没有更好/更清晰的方法在Spring Boot应用中设置ContextSource
?
application.properties(在类路径上):
ldap.url=ldap://server.domain.com:389
ldap.base:OU=Employees,OU=Users,DC=domain,DC=com
ldap.username:CN=myuserid,OU=employees,OU=Users,DC=domain,DC=com
ldap.password:secretthingy
MyLdapContextSource.java:
@Component
public class MyLdapContextSource extends LdapContextSource implements ContextSource {
@Value("${ldap.url}")
@Override
public void setUrl(String url) { super.setUrl(url); }
@Value("${ldap.base}")
@Override
public void setBase(String base) {super.setBase(base); }
@Value("${ldap.username}")
@Override
public void setUserDn(String userDn) {super.setUserDn(userDn); }
@Value("${ldap.password}")
@Override
public void setPassword(String password) { super.setPassword(password); }
}
MyLdapTemplate.java:
@Component
public class MyLdapTemplate extends LdapTemplate {
@Autowired
public MyLdapTemplate(ContextSource contextSource) { super(contextSource); }
}
DirectoryService.java:
@Service
public class DirectoryService {
private final LdapTemplate ldapTemplate;
@Value("${ldap.base}")
private String BASE_DN;
@Autowired
public DirectoryService(LdapTemplate ldapTemplate) { this.ldapTemplate = ldapTemplate; }
public Person lookupPerson(String username) {
return (Person) ldapTemplate.lookup("cn=" + username, new PersonAttributesMapper());
}
public List<Person> searchDirectory(String searchterm) {
SearchControls searchControls = new SearchControls();
searchControls.setCountLimit(25);
searchControls.setSearchScope(SearchControls.SUBTREE_SCOPE);
List<Person> people = (List<Person>) ldapTemplate.search(
BASE_DN, "cn=" + searchterm, searchControls, new PersonAttributesMapper());
return people;
}
}
答案 0 :(得分:44)
为什么所有的子类?只需使用配置来配置bean。 XML或Java Config。
@Configuration
public class LdapConfiguration {
@Autowired
Environment env;
@Bean
public LdapContextSource contextSource () {
LdapContextSource contextSource= new LdapContextSource();
contextSource.setUrl(env.getRequiredProperty("ldap.url"));
contextSource.setBase(env.getRequiredProperty("ldap.base"));
contextSource.setUserDn(env.getRequiredProperty("ldap.user"));
contextSource.setPassword(env.getRequiredProperty("ldap.password"));
return contextSource;
}
@Bean
public LdapTemplate ldapTemplate() {
return new LdapTemplate(contextSource());
}
}
您的DirectoryService
可以保持与LdapTemplate
自动装配相同的效果。
一般的经验法则是,您不想扩展基础架构bean(如DataSource
或LdapTemplate
),但要明确配置它们。这与您的应用程序bean(服务,存储库等)相反。
答案 1 :(得分:1)
对于简单的情况,根本不需要显式连接LDAP。 Spring Boot旨在通过一开始就被淘汰而消除这种事情。
确保您包含spring-boot-starter-data-ldap
或spring-ldap-core
依赖项,例如您的pom:xml
中的Maven:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-ldap</artifactId>
</dependency>
使用以下密钥在application.properties
中配置LDAP:
# Note the spring prefix for each and use just the CN for username
spring.ldap.url=ldap://server.domain.com:389
spring.ldap.base=OU=Employees,OU=Users,DC=domain,DC=com
spring.ldap.username=myuserid
spring.ldap.password=secretthingy
然后只需依靠Spring自动装配,例如使用字段注入 1 :
@Autowired
private final LdapTemplate ldapTemplate;
参考:Spring Boot Reference Guide: LDAP
1 字段注入通常为not recommended,但此处用于简化。