java中设置Session有效时间


#单位分钟 (web.xml中设置)

 
  20
 


// 通过编码方式,指定特定的session的过期时间,以秒为单位

HttpSession session = request.getSession();
session.setMaxInactiveInterval(20*60);



#设置session不过期   将session过期时间值设置为 -1

 
  -1
 


你可能感兴趣的:(java技术,java,Session,Session有效时间,Session失效时间)