14

我正在使用 Spring Security 3.1。授权后重定向时出现问题。它重定向到一个 favicon 404 错误。添加role_anonymousfavicon 没有帮助。

<beans:beans xmlns="http://www.springframework.org/schema/security"
xmlns:beans="http://www.springframework.org/schema/beans" 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">

<!--To enable spring security comment this string
    <http auto-config="true" security="none"/>-->

    <!-- To enable spring security remove comment from this code-->
        <http auto-config="true">
                <intercept-url pattern="/**" access="ROLE_ADMIN"/>
                <intercept-url pattern="/favicon.ico" access="ROLE_ANONYMOUS" />
        </http>


<authentication-manager>
    <authentication-provider>
        <user-service>
            <user name="hey" password="there" authorities="ROLE_ADMIN" />
        </user-service>
    </authentication-provider>
</authentication-manager>

</beans:beans>
4

1 回答 1

28

您最好从过滤器链中完全省略该路径。

采用

<http pattern="/favicon.ico" security="none" />

<http auto-config="true">
    <intercept-url pattern="/**" access="ROLE_ADMIN"/>
</http>

反而。

还要记住,您需要intercept-url从最特定模式到最不特定模式对元素进行排序,因此您的原始配置无论如何都会忽略 favicon 模式。

我还建议您不要使用auto-config而是明确指定要使用的功能,以便您清楚要添加到安全过滤器链中的内容。

于 2012-06-28T12:40:39.930 回答