基本认证
本节详细介绍了 Spring Security 如何为基于 servlet 的应用程序提供对 基本 HTTP 认证 的支持。
本节描述了 HTTP 基本认证在 Spring Security 中的工作原理。首先,我们看到当未经身份验证的客户端发送请求时,会返回 WWW-Authenticate 头。
上图基于我们的 SecurityFilterChain
图表。
首先,用户对未经授权的资源 /private
发出未经身份验证的请求。
Spring Security 的 AuthorizationFilter
指示未经身份验证的请求被拒绝,方法是抛出 AccessDeniedException
异常。
由于用户未经身份验证,ExceptionTranslationFilter
会启动身份验证。配置的 AuthenticationEntryPoint
是 BasicAuthenticationEntryPoint
的一个实例,它会发送 WWW-Authenticate 头。RequestCache
通常是 NullRequestCache
,它不会保存请求,因为客户端能够重放它最初请求的请求。
当客户端收到 WWW-Authenticate
头时,它就知道应该使用用户名和密码重试。下图显示了处理用户名和密码的流程。
上图基于我们的 SecurityFilterChain
图表。
当用户提交用户名和密码时,BasicAuthenticationFilter
会创建一个 UsernamePasswordAuthenticationToken
,这是一种通过从 HttpServletRequest
中提取用户名和密码来进行 Authentication
的类型。
接下来,UsernamePasswordAuthenticationToken
会传递到 AuthenticationManager
以进行身份验证。AuthenticationManager
的具体实现取决于 用户信息存储方式。
如果身份验证失败,则失败。
-
SecurityContextHolder 会被清除。
-
RememberMeServices.loginFail
会被调用。如果未配置“记住我”,则此操作为无操作。请参阅 Javadoc 中的RememberMeServices
接口。 -
AuthenticationEntryPoint
会被调用以触发再次发送 WWW-Authenticate。请参阅 Javadoc 中的AuthenticationEntryPoint
接口。
如果身份验证成功,则成功。
-
Authentication 会设置到 SecurityContextHolder 上。
-
RememberMeServices.loginSuccess
会被调用。如果未配置“记住我”,则此操作为无操作。请参阅 Javadoc 中的RememberMeServices
接口。 -
BasicAuthenticationFilter
调用FilterChain.doFilter(request,response)
以继续执行应用程序的其余逻辑。请参阅 Javadoc 中的BasicAuthenticationFilter
类
默认情况下,Spring Security 的 HTTP 基本身份验证支持已启用。但是,一旦提供了任何基于 Servlet 的配置,就必须显式提供 HTTP 基本身份验证。
以下示例显示了一个最小的显式配置
-
Java
-
XML
-
Kotlin
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) {
http
// ...
.httpBasic(withDefaults());
return http.build();
}
<http>
<!-- ... -->
<http-basic />
</http>
@Bean
open fun filterChain(http: HttpSecurity): SecurityFilterChain {
http {
// ...
httpBasic { }
}
return http.build()
}