반응형
spring security max session
-
스프링 시큐리티 중복로그인 안될 때 해결방법Spring Security 2023. 11. 3. 10:44
일반적인 스프링시큐리티 중복로그인 설정을 하였지만 여러 문제가 발생 1. 서로 다른 브라우저로 동일회원 로그인시 로그인처리가 되는 문제 2. 로그아웃하고 로그인하면 Maximum sessions of 1 for this principal exceeded 에러 발생 3. 브라우저를 강제로 종료후 다시 로그인하면 Maximum sessions of 1 for this principal exceeded 에러 발생 1. 시큐리티 설정파일에 ServletListenerRegistrationBean, SessionRegistry를 빈으로 등록한다. SecurityConfig.java @EnableWebSecurity public class SecurityConfig { //추가 @Bean ServletListene..