212.5. DirContext
URI ldap:ldapserver
引用了 ID 为 ldapserver
的 Spring bean。ldapserver
bean 可以定义如下:
<bean id="ldapserver" class="javax.naming.directory.InitialDirContext" scope="prototype"> <constructor-arg> <props> <prop key="java.naming.factory.initial">com.sun.jndi.ldap.LdapCtxFactory</prop> <prop key="java.naming.provider.url">ldap://localhost:10389</prop> <prop key="java.naming.security.authentication">none</prop> </props> </constructor-arg> </bean>
前面的示例声明了一个基于 Sun 的常规 LDAP DirContext
,它将匿名连接到本地托管的 LDAP 服务器。
注意
不需要 DirContext
对象来支持根据合同的并发。因此,务必要在 bean
定义中使用 set, scope="prototype"
声明目录上下文,或者上下文支持并发。在 Spring 框架中,每次查找时都会对范围对象进行实例化。