春季注销时出现错误 404
Posted
技术标签:
【中文标题】春季注销时出现错误 404【英文标题】:Error 404 on spring logout 【发布时间】:2015-08-09 20:10:45 【问题描述】:我正在尝试使用 spring security v.4 向我的应用程序添加登录功能。登录工作正常,但是当我尝试注销时出现错误 404。 Spring Security 参考说默认注销 URL 是 /logout。我的应用程序部署在 /app URL 下,我尝试遵循 URL localhost:8080/app/logout 和 localhost:8080/app/json/logout。我在堆栈上发现了一些类似的问题,但它们与使用 CSRF 保护而我没有使用它的情况有关。这是我的 web.xml 文件的一部分
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/json-servlet.xml,
/WEB-INF/applicationContext.xml</param-value>
</context-param>
<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>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<servlet>
<servlet-name>json</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>json</servlet-name>
<url-pattern>/json/*</url-pattern>
</servlet-mapping>
还有我的 json-servlet.xml 哪里是 spring 安全配置:
<context:component-scan base-package="test" />
<mvc:annotation-driven />
<security:http>
<security:intercept-url pattern="/**" access="hasRole('USER')" />
<security:form-login />
<security:logout />
</security:http>
<security:authentication-manager>
<security:authentication-provider>
<security:user-service>
<security:user name="test" password="1" authorities="ROLE_USER, ROLE_ADMIN" />
</security:user-service>
</security:authentication-provider>
</security:authentication-manager>
提前致谢。
【问题讨论】:
在使用 Spring 4 时不要使用 XML。只是不要。使用遍布其示例或 Spring Boot 的基于 java 的配置。 【参考方案1】:根据documentation从pring版本4开始默认开启安全CSRF,默认支持的唯一方法是POST,所以可以这样调用:
<form method="post" action="$pageContext.request.contextPath/logout" id="form-logout">
<input type="hidden" name="$_csrf.parameterName" value="$_csrf.token"/>
</form>
或显式禁用 csrf 保护
<http>
<!-- ... -->
<csrf disabled="true"/>
</http>
来自documentation
如果您真的想在注销时使用 HTTP GET,您可以这样做,但请记住,通常不建议这样做。例如,以下 Java 配置将使用任何 HTTP 方法请求的 URL /logout 执行注销:
@EnableWebSecurity
public class WebSecurityConfig extends
WebSecurityConfigurerAdapter
@Override
protected void configure(HttpSecurity http) throws Exception
http
.logout()
.logoutRequestMatcher(new AntPathRequestMatcher("/logout"));
【讨论】:
以上是关于春季注销时出现错误 404的主要内容,如果未能解决你的问题,请参考以下文章
在 Grails 的 Spring Security Rest Plugin 中注销时出现 404
在生产环境中使用 Rails 7 中的 importmaps 时出现 404 错误