passwordManagement

fun passwordManagement(passwordManagementConfiguration: ServerPasswordManagementDsl.() -> Unit)

Enables password management.

Example:

@Configuration
@EnableWebFluxSecurity
class SecurityConfig {

@Bean
fun springWebFilterChain(http: ServerHttpSecurity): SecurityWebFilterChain {
return http {
passwordManagement {
changePasswordPage = "/custom-change-password-page"
}
}
}
}

Since

5.6

Parameters

passwordManagementConfiguration

custom configuration to be applied to the password management

See also