Spring-ldap通过注释而不是XML

时间:2015-09-16 05:56:09

标签: annotations spring-boot spring-ldap

我从SO问题Best practice for configuring Spring LdapTemplate via annotations instead of XML?

获得了设置LdapContextSource和LdapTemplate而没有XML配置的答案

以下xml的注释方式应该是什么 - 基于接口自动创建存储库bean?

<ldap:repositories base-package="org.springframework.ldap.samples.useradmin.domain" />

1 个答案:

答案 0 :(得分:2)

像这样。

@Configuration
@EnableLdapRepositories("org.springframework.ldap.samples.useradmin.domain")
public class LdapConfiguration { ... }

@EnableLdapRepositories负责添加正确的配置并扫描存储库。