38 lines
1.3 KiB
Plaintext
Raw Normal View History

[[servlet-authentication-userdetailsservice]]
= UserDetailsService
2019-09-22 00:56:30 -06:00
{security-api-url}org/springframework/security/core/userdetails/UserDetailsService.html[`UserDetailsService`] is used by <<servlet-authentication-daoauthenticationprovider,`DaoAuthenticationProvider`>> for retrieving a username, password, and other attributes for authenticating with a username and password.
Spring Security provides <<servlet-authentication-inmemory,in-memory>> and <<servlet-authentication-jdbc,JDBC>> implementations of `UserDetailsService`.
2019-09-22 00:56:30 -06:00
You can define custom authentication by exposing a custom `UserDetailsService` as a bean.
For example, the following will customize authentication assuming that `CustomUserDetailsService` implements `UserDetailsService`:
2019-09-22 00:56:30 -06:00
NOTE: This is only used if the `AuthenticationManagerBuilder` has not been populated and no `AuthenticationProviderBean` is defined.
.Custom UserDetailsService Bean
====
.Java
[source,java,role="primary"]
2019-09-22 00:56:30 -06:00
----
@Bean
CustomUserDetailsService customUserDetailsService() {
return new CustomUserDetailsService();
2019-09-22 00:56:30 -06:00
}
----
.XML
[source,java,role="secondary"]
----
<b:bean class="example.CustomUserDetailsService"/>
----
2019-09-22 00:56:30 -06:00
.Kotlin
[source,kotlin,role="secondary"]
2019-09-22 00:56:30 -06:00
----
@Bean
fun customUserDetailsService() = CustomUserDetailsService()
2019-09-22 00:56:30 -06:00
----
====
// FIXME: Add CustomUserDetails example with links to @AuthenticationPrincipal