- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在尝试使用 Spring Security 在 Spring Boot 2 中为我们的应用程序实现注销机制。
我的 spring security 注销配置是:
http
.logout()
.logoutRequestMatcher(new AntPathRequestMatcher("/logout.html"))
.logoutSuccessHandler(logoutSuccessHandler)
.addLogoutHandler(handler1)
.addLogoutHandler(handler2)
.clearAuthentication(false);
使用此配置,Spring 将两个处理程序添加到 LogoutFilter
以及 Spring 自己的 SecurityContextLogoutHandler
作为处理程序链中的最后一个处理程序。
我们面临的问题是,在我们的自定义 LogoutSuccessHandler
中,我需要访问存储在安全上下文中的 Authentication
中的一些变量,但上下文在SecurityContextLogoutHandler
即使 .clearAuthentication(boolean clearAuthentication)
设置为 false
。
我真正不明白的是SecurityContextLogoutHandler
中logout
方法的实现。
public void logout(HttpServletRequest request, HttpServletResponse response,
Authentication authentication) {
Assert.notNull(request, "HttpServletRequest required");
if (invalidateHttpSession) {
HttpSession session = request.getSession(false);
if (session != null) {
logger.debug("Invalidating session: " + session.getId());
session.invalidate();
}
}
if (clearAuthentication) {
SecurityContext context = SecurityContextHolder.getContext();
context.setAuthentication(null);
}
SecurityContextHolder.clearContext();
}
即使我将 clearAuthentication
设置为 false,这也无关紧要,因为 SecurityContextHolder.clearContext();
方法的最后一行无论如何都会清除它。
clearAuthentication
标志有什么意义?如果需要,如何保留身份验证?
最佳答案
我看过源代码和文档,这是基于 Spring Security 4.2.X 版的。
SecurityContextHolder.clearContext();
不会清除上下文的内容,而是将其从 SecurityContextHolder
的持有策略中移除。另外,可以使用以下策略:
我相信有人会指出在哪里可以阅读这些不同的策略,但这与这个答案并不相关。
What is the point of the clearAuthentication flag
JavaDocs这样说:“如果为真,则从 SecurityContext 中删除身份验证以防止并发请求出现问题。”
也就是说,它与您在此特定情况下尝试做的事情几乎没有关系。
and how to retain the Authentication if I need to?
您实现 LogoutSuccessHandler其中 Authentication
对象直接传递到 onLogoutSuccess(HttpServletRequest 请求,HttpServletResponse 响应,Authentication 身份验证)
。您无需执行任何其他操作即可访问该对象。
关于java - SecurityContextLogoutHandler 清除身份验证,即使设置为 'false',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52167825/
我目前正在尝试使用 Spring Security 在 Spring Boot 2 中为我们的应用程序实现注销机制。 我的 spring security 注销配置是: http .logou
Spring 的 SecurityContextLogoutHandler 指出 clearAuthentication 标志用于: removes the Authentication from t
我是一名优秀的程序员,十分优秀!