session 기본값 확인 하기 프로젝트 우클릭 - Java Build Path - Libraries - Apache Tomcat 위치 확인 web.xml : session-config 확인 session-timeout " 30분 " 기본 값 session timeout 직접 설정하기 ( 우선순위 : controller > web.xml ) 1. web-xml = 모든 세션에 타임아웃 설정 10 // 분 단위 - 10분 2. controller = 특정 세션만 타임아웃 설정 session.setMaxInactiveInterval(20*60); // 초 단위 - 20분 * 그외의 session 시간 및 제거 * getCreationTime() - 세션 생성 시간 getLastAccessedTime() - ..