第一种:
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分钟