فهرست منبع

Update session-management.adoc

lambda expression typo. I changed '(session) - session' to '(session) -> session'
Habin Song 1 سال پیش
والد
کامیت
49f447f3d0
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      docs/modules/ROOT/pages/servlet/authentication/session-management.adoc

+ 1 - 1
docs/modules/ROOT/pages/servlet/authentication/session-management.adoc

@@ -788,7 +788,7 @@ Java::
 @Bean
 public SecurityFilterChain filterChain(HttpSecurity http) {
     http
-        .sessionManagement((session) - session
+        .sessionManagement((session) -> session
             .sessionFixation((sessionFixation) -> sessionFixation
                 .newSession()
             )