-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Closed
Labels
in: configAn issue in spring-security-configAn issue in spring-security-configstatus: backportedAn issue that has been backported to maintenance branchesAn issue that has been backported to maintenance branchestype: bugA general bugA general bug
Milestone
Description
Summary
Although there is a function to disable logout in WebFlux, it does not work.
Actual Behavior
When disabling logout, a "/logout" page is still generated.
Expected Behavior
When disabling logout, no "/logout" should be generated.
Configuration
@EnableWebFluxSecurity
static class SecurityConfig {
@Bean
SecurityWebFilterChain springSecurity(ServerHttpSecurity http) {
http
.logout()
.disable();
return http.build();
}
}
Metadata
Metadata
Assignees
Labels
in: configAn issue in spring-security-configAn issue in spring-security-configstatus: backportedAn issue that has been backported to maintenance branchesAn issue that has been backported to maintenance branchestype: bugA general bugA general bug