Spring Security - 1. Authentication, SecurityContextHolder

Security Context Holder


Untitled

Security Context Holder는 인증된 사용자의 구체적인 정보를 보관한다.

인증정보 유효기간


Security Context Holder 에 저장된 인증정보의 유효 기간은 다음과 같은 방식으로 결정된다.

  1. HTTP Session 기반 :

  2. Stateless (JWT 토큰 등) 기반 :

  3. ThreadLocal 사용 :

    ThreadLocal

사용자의 정보 세팅하기