SessionManagementFilter, ConcurrentSessionFilter 작동 프로세스
SessionManagementFilter, ConcurrentSessionFilter 작동 프로세스 SessionManagementFilter는 이전 사용자 세션을 만료하기 위한 전략을 선택합니다. ConcurrentSessionFilter는 이전 세션이 만료되었는지 여부를 확인하고 값이 true이면 로그아웃 후 오류 페이지로 응답합니다. 인증을 시도하면 UsernamePasswordAuthenticationFilter가 인증 프로세스를 시작합니다. 이 필터는 먼저 ConcurrentSessionControlAuthenticationStrategy를 호출합니다. 이 클래스는 동시 세션 제어를 처리합니다. 두 번째 changeSessionIdAuthenticationStrategy를 호출합니다. 이 클래스는 세션 수정 보호를 처리합니다. 셋째, RegisterSessionAuthenticationStrategy 클래스가 … Read more