//获取Session对象
request.getSession()request.getSession(boolean create)//获取SessionIdgetId()//获取当前session对象的创建时间getCreationTime()//获取最后一次访问该session对象的时间getLastAccessedTime()//设置Session最大时效setMaxInactiveInterval()//获取Session最大时效getMaxInactiveInterval()//判断当前Session对象是不是新建的/**如果客户端请求消息中返回了一个与Servlet程序当前获得的HttpSession对象的会话标识号相同的会话标识号,则认为这个HttpSession对象不是新建的。*/isNew()//销毁当前Session对象invalidate()//属性相关setAttribute()getAttribute()removeAttribute()getAttributeNames()
原文地址:https://www.cnblogs.com/realshijing/p/7878949.html