기존 설정security-context.xml// 계정당 동시 로그인 제한 : 100개 tomcat web.xml// 세션 만료 시간 : 30분30 증상session timeout 만료 후에도 session이 제거되지 않아 새로운 session 생성 불가능 (로그인 불가능)단, 아래와 같이 명시적으로 expire시킨 경우에는 session이 제거된다.expireDuplicatedLoginUser(...){...List list = sessionRegistry.getAllSessions( dupLoginUserName, false );for ( int n = 0; n < list.size(); n++ ) {SessionInformation info = list.get( n );info.expireNow()..