gpt4 book ai didi

java - 带有 LdapTemplate 的 Spring 嵌入式 LDAP

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:57:34 26 4
gpt4 key购买 nike

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

<?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 值中指定的默认端口是什么。

最佳答案

嵌入式ldap服务器的端口默认为33389,参见相关source code .

关于java - 带有 LdapTemplate 的 Spring 嵌入式 LDAP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15326223/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com