Spring安全配置导致重定向循环

时间:2012-07-06 20:48:13

标签: java spring spring-mvc spring-security

我最近开始学习spring security并尝试将其合并到我现有的Web应用程序中。该应用程序配置简单,所以我很困惑,我已经设法搞砸了。

我的web.xml

<!-- FilterChain proxy for security -->
<filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>

<filter-mapping>
  <filter-name>springSecurityFilterChain</filter-name>
  <url-pattern>/*</url-pattern>
</filter-mapping>

<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/appname-servlet.xml</param-value>
</context-param>


<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener> 

<servlet>
    <servlet-name>nistreq</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/appname-servlet.xml</param-value>
    </init-param>
</servlet>

<servlet-mapping>
    <servlet-name>appname</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>

<welcome-file-list>
    <welcome-file>mainpage.jsp</welcome-file>
</welcome-file-list>

和security-config.xml

<security:http access-denied-page="/denied.jsp" use-expressions="true">
    <security:form-login login-page="/login.jsp"
        authentication-failure-url="/login.jsp?login_error=true" />     
    <security:intercept-url pattern="/*" access="isAuthenticated()"/>
    <security:logout/>
</security:http>

我为我们为springSecurityFilterChain(“/ ”)映射的URI,servlet映射的URL模式(“/”)和security:intercept-url模式(“ / “)。这会导致重定向循环。我已经经历了无数种移动术语的变化,将内容推送到子包中以避免保护应用程序根目录等。我总是最终得到404的抓包,重定向循环等。

我正在做一些非常愚蠢的事情,并会欣赏另一双眼睛。感谢您的任何见解...

1 个答案:

答案 0 :(得分:5)

我相信您只需为登录页面添加例外。除了security-config.xml中的内容之外,还要添加以下内容:

<security:http pattern="/login.jsp" security="none" />

无论您尝试访问哪个网址,都未经过身份验证,因此会尝试转到登录页面。然而,这也没有经过验证,所以它只是旋转和旋转。您的登录页面无需经过身份验证即可访问。