How do I set session timeout of greater than 30 minutes

前端 未结 5 1262
攒了一身酷
攒了一身酷 2021-02-02 01:42

Dose anybody know how to set session timeout greater than 30 minutes? these two methods wont work (default to 30 min).




        
5条回答
  •  走了就别回头了
    2021-02-02 02:13

    this will set your session to keep everything till the browser is closed

    session.setMaxinactiveinterval(-1);
    

    and this should set it for 1 day

    session.setMaxInactiveInterval(60*60*24);

提交回复
热议问题