JavaWeb——HttpSession常用方法示例
2020-12-13 06:03
YPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
标签:rem BMI this last tps strong logo idea submit
HttpSession接口中方法
getId()
getCreationTime()
getLastAccessedTime()
setMaxInactiveInterval()
getMaxInactiveInterval()
isNew():如果客户端请求消息中返回了一个与Servlet程序当前获得的HttpSession对象的会话标识号相同,则认为这个HttpSession对象不是新建的
invalidate()
getServletContext()
setAttribute()
getAttribute()
removeAttribute()
getAttributeNames()
login.jsp
Title SessionID:
IsNew:
MaxInactive:
CreateTime:
LastAssessTime:
hello.jsp
Title SessionID:
IsNew:
MaxInactive:
CreateTime:
LastAssessTime:
Hello:
重新登录
注销
logout.jsp
Title SessionID:
IsNew:
MaxInactive:
CreateTime:
LastAssessTime:
BYE:
重新登录
JavaWeb——HttpSession常用方法示例
标签:rem BMI this last tps strong logo idea submit
原文地址:https://www.cnblogs.com/yangHS/p/11164726.html
上一篇:动态操作DOM节点js实现
下一篇:java运算符那些事