Skip to content

Commit

Permalink
fix : 세션 정책 변경 ALWAYS
Browse files Browse the repository at this point in the history
  • Loading branch information
dltjdgh0428 committed Mar 28, 2024
1 parent d5affcf commit df90fb7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public SecurityFilterChain filterChain(HttpSecurity http, HandlerMappingIntrospe

http
.sessionManagement(sessionManagement ->
sessionManagement.sessionCreationPolicy(SessionCreationPolicy.IF_REQUIRED)
sessionManagement.sessionCreationPolicy(SessionCreationPolicy.ALWAYS)
)
.cors(cors -> cors.configurationSource(corsConfigurationSource()))
.csrf(AbstractHttpConfigurer::disable)
Expand Down

0 comments on commit df90fb7

Please sign in to comment.