如何将 spring security 从 ldap 更改为 ldap starttls

发布于 2024-12-22 18:47:33 字数 4498 浏览 1 评论 0原文

如何将 spring security 从 ldap 更改为 ldap starttls。

我正在使用 Spring Security 和 LDAP 在 Springs 中编写一个项目。我一切正常,然后管理员将其更改为带有 starttls 的 ldap。有人可以告诉我如何更新我的 xml 文件以使我的项目再次运行吗?

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/jdbc
           http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
           http://www.springframework.org/schema/security
           http://www.springframework.org/schema/security/spring-security-3.0.xsd"
    xmlns="http://www.springframework.org/schema/security" >

    <http
        auto-config="true"
        use-expressions="true" >

        <intercept-url
            access="hasRole('ROLE_MEMBER_INQUIRY')"
            pattern="/requests/**" />

    </http>

    <authentication-manager >

        <ldap-authentication-provider
            user-search-base="ou=webusers"
            user-search-filter="(uid={0})" >

            <password-compare >

                <password-encoder ref="passwordEncoder" >
                </password-encoder>
            </password-compare>
        </ldap-authentication-provider>
    </authentication-manager>

    <beans:bean
        id="passwordEncoder"
        class="org.springframework.security.authentication.encoding.Md5PasswordEncoder" >
    </beans:bean>

    <beans:bean
        id="contextSource"
        class="org.springframework.security.ldap.DefaultSpringSecurityContextSource" >

        <beans:constructor-arg value="ldap://10.52.208.228:389/dc=xxxxx,dc=dev" />

        <beans:property
            name="userDn"
            value="cn=Manager,dc=xxxxx,dc=dev" />

        <beans:property
            name="password"
            value="secret" />
    </beans:bean>

    <beans:bean
        id="ldapAuthProvider"
        class="org.springframework.security.ldap.authentication.LdapAuthenticationProvider" >

        <beans:constructor-arg >

            <beans:bean class="org.springframework.security.ldap.authentication.BindAuthenticator" >

                <beans:constructor-arg ref="contextSource" />

                <beans:property name="userDnPatterns" >

                    <beans:list >

                        <beans:value >

uid={0},ou=webusers

                        </beans:value>
                    </beans:list>
                </beans:property>
            </beans:bean>
        </beans:constructor-arg>

        <beans:constructor-arg >

            <beans:bean class="org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator" >

                <beans:constructor-arg ref="contextSource" />

                <beans:constructor-arg value="ou=groups" />

                <beans:property
                    name="groupRoleAttribute"
                    value="ou" />
            </beans:bean>
        </beans:constructor-arg>
    </beans:bean>

    <ldap-server url="ldap://10.52.208.228:389/dc=xxxxx,dc=dev" />

    <beans:bean
        id="propertyConfigurer"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" >

        <beans:property
            name="location"
            value="classpath:jdbc.properties" />
    </beans:bean>

    <beans:bean
        id="dataSource"
        class="org.apache.commons.dbcp.BasicDataSource" >

        <beans:property
            name="driverClassName"
            value="${database.driver}" />

        <beans:property
            name="url"
            value="${database.url}" />

        <beans:property
            name="username"
            value="${database.user}" />

        <beans:property
            name="password"
            value="${database.password}" />

        <beans:property
            name="initialSize"
            value="5" />

        <beans:property
            name="maxActive"
            value="10" />
    </beans:bean>

</beans:beans>

How to change spring security from ldap to ldap starttls.

I am writing a project in Springs using Spring Security and LDAP. I had everything working great and then the admin changed it to ldap with starttls. Can someone please show me how to update my xml file to get my project working again.

<?xml version="1.0" encoding="UTF-8"?>
<beans:beans xmlns:beans="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:jdbc="http://www.springframework.org/schema/jdbc"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
           http://www.springframework.org/schema/jdbc
           http://www.springframework.org/schema/jdbc/spring-jdbc-3.0.xsd
           http://www.springframework.org/schema/security
           http://www.springframework.org/schema/security/spring-security-3.0.xsd"
    xmlns="http://www.springframework.org/schema/security" >

    <http
        auto-config="true"
        use-expressions="true" >

        <intercept-url
            access="hasRole('ROLE_MEMBER_INQUIRY')"
            pattern="/requests/**" />

    </http>

    <authentication-manager >

        <ldap-authentication-provider
            user-search-base="ou=webusers"
            user-search-filter="(uid={0})" >

            <password-compare >

                <password-encoder ref="passwordEncoder" >
                </password-encoder>
            </password-compare>
        </ldap-authentication-provider>
    </authentication-manager>

    <beans:bean
        id="passwordEncoder"
        class="org.springframework.security.authentication.encoding.Md5PasswordEncoder" >
    </beans:bean>

    <beans:bean
        id="contextSource"
        class="org.springframework.security.ldap.DefaultSpringSecurityContextSource" >

        <beans:constructor-arg value="ldap://10.52.208.228:389/dc=xxxxx,dc=dev" />

        <beans:property
            name="userDn"
            value="cn=Manager,dc=xxxxx,dc=dev" />

        <beans:property
            name="password"
            value="secret" />
    </beans:bean>

    <beans:bean
        id="ldapAuthProvider"
        class="org.springframework.security.ldap.authentication.LdapAuthenticationProvider" >

        <beans:constructor-arg >

            <beans:bean class="org.springframework.security.ldap.authentication.BindAuthenticator" >

                <beans:constructor-arg ref="contextSource" />

                <beans:property name="userDnPatterns" >

                    <beans:list >

                        <beans:value >

uid={0},ou=webusers

                        </beans:value>
                    </beans:list>
                </beans:property>
            </beans:bean>
        </beans:constructor-arg>

        <beans:constructor-arg >

            <beans:bean class="org.springframework.security.ldap.userdetails.DefaultLdapAuthoritiesPopulator" >

                <beans:constructor-arg ref="contextSource" />

                <beans:constructor-arg value="ou=groups" />

                <beans:property
                    name="groupRoleAttribute"
                    value="ou" />
            </beans:bean>
        </beans:constructor-arg>
    </beans:bean>

    <ldap-server url="ldap://10.52.208.228:389/dc=xxxxx,dc=dev" />

    <beans:bean
        id="propertyConfigurer"
        class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" >

        <beans:property
            name="location"
            value="classpath:jdbc.properties" />
    </beans:bean>

    <beans:bean
        id="dataSource"
        class="org.apache.commons.dbcp.BasicDataSource" >

        <beans:property
            name="driverClassName"
            value="${database.driver}" />

        <beans:property
            name="url"
            value="${database.url}" />

        <beans:property
            name="username"
            value="${database.user}" />

        <beans:property
            name="password"
            value="${database.password}" />

        <beans:property
            name="initialSize"
            value="5" />

        <beans:property
            name="maxActive"
            value="10" />
    </beans:bean>

</beans:beans>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我不在是我 2024-12-29 18:47:33

您需要向配置中的 ContextSource 提供 DirContextAuthenticationStrategy 实现。

看:
http://static.springsource.org/spring-ldap/site /reference/html/configuration.html

You need to supply a DirContextAuthenticationStrategy implementation to the ContextSource in the configuration.

See:
http://static.springsource.org/spring-ldap/site/reference/html/configuration.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文