반응형

spring 환경에서 session(세션) 시간을 변경 할 수 있다.


spring 내 web.xml 에 아래와 같이 설정

 - 시간 기준은 '분'

<session-config>
<session-timeout>60</session-timeout>
</session-config>



spring 뿐만 아니라 웹 서버 환경에서도 설정할수 있다.


Apach Tomcat 기준 

apache-tomcat-x.x.x\conf\web.xml


위 web.xml 에서도 동일 하게 


<session-config>
<session-timeout>30</session-timeout>
</session-config>



로 설정 할 수 있다.


둘의 우선순위는 어느 곳의 우선순위가 더 높은 지는 추후 확인 해봐야 될것 이다.

반응형

+ Recent posts