Closed
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();
}
}