1

我对 xml 知之甚少或一无所知,我必须编写一个 spring-security.xml 文件。我猜这个问题与我的xml没有遵循xsd有关。这是xml。

<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:s="http://www.springframework.org/schema/security"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-3.1.xsd">

    <s:http auto-config="true">
                <s:intercept-url pattern="/login" access="IS_AUTHENTICATED_ANONYMOUSLY" />
                <s:intercept-url pattern="/index.jsp" access="IS_AUTHENTICATED_ANONYMOUSLY" />
        <s:intercept-url pattern="/**" access="ROLE_USER" />
                <s:intercept-url pattern="/" access="ROLE_USER" />       
        <s:form-login login-page="/login" default-target-url="/getemp"/>
        <s:logout logout-success-url="/logout" />
    </s:http>

    <s:authentication-manager>
        <s:authentication-provider>

                        <s:ldap-authentication-provider user-dn-pattern="uid={0},ou=people"/>
        </s:authentication-provider>
    </s:authentication-manager>

        <s:ldap-server id="ldapServer" url="ldap://test.com:389" />

</beans>

当我尝试运行 Web 应用程序时出现错误。

原因:org.xml.sax.SAXParseException:cvc-complex-type.2.4.a:发现以元素“s:ldap-authentication-provider”开头的无效内容。'{"http://www.springframework.org/schema/security":any-user-service, "http://www.springframework.org/schema/security":password-encoder}' 之一是预期的。

这里是xsd

弹簧安全xsd

4

1 回答 1

3

xsd<s:authentication-manager>接受一个authentication-providerOR an作为孩子ldap-authentication-provider。因此,删除<s:authentication-provider>包裹你的<s:ldap-authentication-provider>那个应该会让你解决这个问题。您的最终代码应如下所示:

<s:authentication-manager>
    <s:ldap-authentication-provider user-dn-pattern="uid={0},ou=people"/>
</s:authentication-manager>
于 2012-12-07T22:15:54.023 回答