Class BasicAuthenticationFilter
- All Implemented Interfaces:
jakarta.servlet.Filter,org.springframework.beans.factory.Aware,org.springframework.beans.factory.BeanNameAware,org.springframework.beans.factory.DisposableBean,org.springframework.beans.factory.InitializingBean,org.springframework.context.EnvironmentAware,org.springframework.core.env.EnvironmentCapable,org.springframework.web.context.ServletContextAware
SecurityContextHolder.
For a detailed background on what this filter is designed to process, refer to RFC 1945, Section 11.1. Any realm name presented in the HTTP request is ignored.
In summary, this filter is responsible for processing any request that has a HTTP
request header of Authorization with an authentication scheme of
Basic and a Base64-encoded username:password token. For
example, to authenticate user "Aladdin" with password "open sesame" the following
header would be presented:
Authorization: Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ==
This filter can be used to provide BASIC authentication services to both remoting protocol clients (such as Hessian and SOAP) as well as standard user agents (such as Internet Explorer and Netscape).
If authentication is successful, the resulting Authentication object will be
placed into the SecurityContextHolder.
If authentication fails and ignoreFailure is false (the
default), an AuthenticationEntryPoint implementation is called (unless the
ignoreFailure property is set to true). Usually this should be
BasicAuthenticationEntryPoint, which will prompt the user to authenticate again
via BASIC authentication.
Basic authentication is an attractive protocol because it is simple and widely
deployed. However, it still transmits a password in clear text and as such is
undesirable in many situations. Digest authentication is also provided by Spring
Security and should be used instead of Basic authentication wherever possible. See
DigestAuthenticationFilter.
Note that if a RememberMeServices is set, this filter will automatically send
back remember-me details to the client. Therefore, subsequent requests will not need to
present a BASIC authentication header as they will be authenticated using the
remember-me mechanism.
-
Field Summary
Fields inherited from class org.springframework.web.filter.OncePerRequestFilter
ALREADY_FILTERED_SUFFIXFields inherited from class org.springframework.web.filter.GenericFilterBean
logger -
Constructor Summary
ConstructorsConstructorDescriptionBasicAuthenticationFilter(org.springframework.security.authentication.AuthenticationManager authenticationManager) Creates an instance which will authenticate against the suppliedAuthenticationManagerand which will ignore failed authentication attempts, allowing the request to proceed down the filter chain.BasicAuthenticationFilter(org.springframework.security.authentication.AuthenticationManager authenticationManager, AuthenticationEntryPoint authenticationEntryPoint) Creates an instance which will authenticate against the suppliedAuthenticationManagerand use the suppliedAuthenticationEntryPointto handle authentication failures. -
Method Summary
Modifier and TypeMethodDescriptionvoidprotected booleanauthenticationIsRequired(String username) protected voiddoFilterInternal(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, jakarta.servlet.FilterChain chain) protected AuthenticationEntryPointprotected org.springframework.security.authentication.AuthenticationManagerprotected StringgetCredentialsCharset(jakarta.servlet.http.HttpServletRequest httpRequest) protected booleanprotected voidonSuccessfulAuthentication(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.security.core.Authentication authResult) protected voidonUnsuccessfulAuthentication(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.security.core.AuthenticationException failed) voidsetAuthenticationDetailsSource(org.springframework.security.authentication.AuthenticationDetailsSource<jakarta.servlet.http.HttpServletRequest, ?> authenticationDetailsSource) voidsetCredentialsCharset(String credentialsCharset) voidsetRememberMeServices(RememberMeServices rememberMeServices) voidsetSecurityContextHolderStrategy(org.springframework.security.core.context.SecurityContextHolderStrategy securityContextHolderStrategy) Sets theSecurityContextHolderStrategyto use.voidsetSecurityContextRepository(SecurityContextRepository securityContextRepository) Sets theSecurityContextRepositoryto save theSecurityContexton authentication success.Methods inherited from class org.springframework.web.filter.OncePerRequestFilter
doFilter, doFilterNestedErrorDispatch, getAlreadyFilteredAttributeName, isAsyncDispatch, isAsyncStarted, shouldNotFilter, shouldNotFilterAsyncDispatch, shouldNotFilterErrorDispatchMethods inherited from class org.springframework.web.filter.GenericFilterBean
addRequiredProperty, createEnvironment, destroy, getEnvironment, getFilterConfig, getFilterName, getServletContext, init, initBeanWrapper, initFilterBean, setBeanName, setEnvironment, setServletContext
-
Constructor Details
-
BasicAuthenticationFilter
public BasicAuthenticationFilter(org.springframework.security.authentication.AuthenticationManager authenticationManager) Creates an instance which will authenticate against the suppliedAuthenticationManagerand which will ignore failed authentication attempts, allowing the request to proceed down the filter chain.- Parameters:
authenticationManager- the bean to submit authentication requests to
-
BasicAuthenticationFilter
public BasicAuthenticationFilter(org.springframework.security.authentication.AuthenticationManager authenticationManager, AuthenticationEntryPoint authenticationEntryPoint) Creates an instance which will authenticate against the suppliedAuthenticationManagerand use the suppliedAuthenticationEntryPointto handle authentication failures.- Parameters:
authenticationManager- the bean to submit authentication requests toauthenticationEntryPoint- will be invoked when authentication fails. Typically an instance ofBasicAuthenticationEntryPoint.
-
-
Method Details
-
setSecurityContextRepository
Sets theSecurityContextRepositoryto save theSecurityContexton authentication success. The default action is not to save theSecurityContext.- Parameters:
securityContextRepository- theSecurityContextRepositoryto use. Cannot be null.
-
afterPropertiesSet
public void afterPropertiesSet()- Specified by:
afterPropertiesSetin interfaceorg.springframework.beans.factory.InitializingBean- Overrides:
afterPropertiesSetin classorg.springframework.web.filter.GenericFilterBean
-
doFilterInternal
protected void doFilterInternal(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, jakarta.servlet.FilterChain chain) throws IOException, jakarta.servlet.ServletException - Specified by:
doFilterInternalin classorg.springframework.web.filter.OncePerRequestFilter- Throws:
IOExceptionjakarta.servlet.ServletException
-
authenticationIsRequired
-
onSuccessfulAuthentication
protected void onSuccessfulAuthentication(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.security.core.Authentication authResult) throws IOException - Throws:
IOException
-
onUnsuccessfulAuthentication
protected void onUnsuccessfulAuthentication(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, org.springframework.security.core.AuthenticationException failed) throws IOException - Throws:
IOException
-
getAuthenticationEntryPoint
-
getAuthenticationManager
protected org.springframework.security.authentication.AuthenticationManager getAuthenticationManager() -
isIgnoreFailure
protected boolean isIgnoreFailure() -
setSecurityContextHolderStrategy
public void setSecurityContextHolderStrategy(org.springframework.security.core.context.SecurityContextHolderStrategy securityContextHolderStrategy) Sets theSecurityContextHolderStrategyto use. The default action is to use theSecurityContextHolderStrategystored inSecurityContextHolder.- Since:
- 5.8
-
setAuthenticationDetailsSource
public void setAuthenticationDetailsSource(org.springframework.security.authentication.AuthenticationDetailsSource<jakarta.servlet.http.HttpServletRequest, ?> authenticationDetailsSource) -
setRememberMeServices
-
setCredentialsCharset
-
getCredentialsCharset
-