We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bade66e + 386e0a7 commit 69527f9Copy full SHA for 69527f9
docs/modules/ROOT/pages/reactive/authentication/logout.adoc
@@ -20,7 +20,7 @@ Java::
20
@Bean
21
SecurityWebFilterChain http(ServerHttpSecurity http) throws Exception {
22
DelegatingServerLogoutHandler logoutHandler = new DelegatingServerLogoutHandler(
23
- new WebSessionServerLogoutHandler(), new SecurityContextServerLogoutHandler()
+ new SecurityContextServerLogoutHandler(), new WebSessionServerLogoutHandler()
24
);
25
26
http
@@ -38,7 +38,7 @@ Kotlin::
38
39
fun http(http: ServerHttpSecurity): SecurityWebFilterChain {
40
val customLogoutHandler = DelegatingServerLogoutHandler(
41
- WebSessionServerLogoutHandler(), SecurityContextServerLogoutHandler()
+ SecurityContextServerLogoutHandler(), WebSessionServerLogoutHandler()
42
)
43
44
return http {
0 commit comments