File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
docs/modules/ROOT/pages/reactive/authentication Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 20
20
@Bean
21
21
SecurityWebFilterChain http(ServerHttpSecurity http) throws Exception {
22
22
DelegatingServerLogoutHandler logoutHandler = new DelegatingServerLogoutHandler(
23
- new WebSessionServerLogoutHandler (), new SecurityContextServerLogoutHandler ()
23
+ new SecurityContextServerLogoutHandler (), new WebSessionServerLogoutHandler ()
24
24
);
25
25
26
26
http
@@ -38,7 +38,7 @@ Kotlin::
38
38
@Bean
39
39
fun http(http: ServerHttpSecurity): SecurityWebFilterChain {
40
40
val customLogoutHandler = DelegatingServerLogoutHandler(
41
- WebSessionServerLogoutHandler (), SecurityContextServerLogoutHandler ()
41
+ SecurityContextServerLogoutHandler (), WebSessionServerLogoutHandler ()
42
42
)
43
43
44
44
return http {
You can’t perform that action at this time.
0 commit comments