三种设置session的失效时间

时间:2021-03-02 17:09:53

第一种:

web.xml中加上,

<session-config>
  <session-timeout>15</session-timeout>
  </session-config>

15代码15分钟

第二种:

request.getSession().setMaxInactiveInterval(600);

600是以秒为单位的

第三种:

tomcat包下的conf/web.xml 

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

默认为30分钟