Spring Security - 세션 생성 정책, SessionCreationPolicy
2021. 4. 15. 16:59ㆍSPRING/SPRING SECURITY
사용 예제
1
|
http.sessionManagement().sessionCreationPolicy(SessionCreationPolicy.IF_REQUIRED);
|
cs |
정책 종류
- SessionCreationPolicy. Always : 스프링 시큐리티가 항상 세션 생성
- SessionCreationPolicy. If_Required : 스프링 시큐리티가 필요 시 생성(기본값)
- SessionCreationPolicy. Never : 스프링 시큐리티가 생성하지 않지만 이미 존재하면 사용
- SessionCreationPolicy. Stateless : 스프링 시큐리티가 생성하지 않고 존재해도 사용하지 않음
'SPRING > SPRING SECURITY' 카테고리의 다른 글
Spring Security - 인증, 인가 예외 ExceptionTranslationFilter, AuthenticationException, AccessDeniedException (0) | 2021.04.16 |
---|---|
Spring Security - 인가 API, URL 방식 (0) | 2021.04.16 |
Spring Security - 세션 고정 보호 API (0) | 2021.04.15 |
Spring Security - 동시 세션 제어 API (0) | 2021.04.15 |
Spring Security - 익명 사용자 인증, AnonymousAuthenticationFilter (0) | 2021.04.15 |