211.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
定义中,目录上下文声明了设置 范围="prototype"
,或者上下文支持并发。在 Spring 框架中,整套对象在每次查找时都会实例化它们。