3

中,嵌入式如何与模板一起使用。目前,我的配置是 -

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:security="http://www.springframework.org/schema/security" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
      http://www.springframework.org/schema/beans/spring-beans-3.1.xsd
      http://www.springframework.org/schema/security 
      http://www.springframework.org/schema/security/spring-security-3.0.xsd">
    <bean id="contextSource" class="org.springframework.ldap.core.support.LdapContextSource">
        <property name="url" value="${PROVIDER_URL}" />
        <property name="base" value="${Search_Base}" />
        <property name="userDn" value="${SECURITY_PRINCIPAL}" />
        <property name="password" value="${SECURITY_CREDENTIALS}" />
    </bean>
    <bean id="ldapTemplate" class="org.springframework.ldap.core.LdapTemplate">
        <constructor-arg ref="contextSource" />
    </bean>
</beans>

ContextSource 值在属性文件中可用。现在我想使用嵌入式 ldap -

<security:ldap-server ldif="classpath:sample.ldif"  root="cn=mojo"/>

我将在 LdapContextSource 值中指定的默认端口是什么。

4

2 回答 2

6

内嵌ldap服务器的端口默认为33389,见相关源码

于 2013-03-10T19:58:24.307 回答
3

您可以使用元素的port属性选择端口。ldap-server请参阅参考手册中的命名空间附录。这也给出了默认值。

于 2013-03-10T21:23:00.960 回答