如何创建和获取 Session。它们的 API 是一样的。
request.getSession()
isNew();--------- 判断到底是不是刚创建出来的(新的)
每个会话都有一个身份证号。也就是 ID 值。而且这个 ID 是唯一的。
getId() -------得到 Session 的会话 id 值
//往 Session 中保存数 req.getSession().setAttribute("key1", "value1"); // 获取 Session 域中的数据 Object attribute = req.getSession().getAttribute("key1");
public void setMaxInactiveInterval(int interval) --设置 Session 的超时时间(以秒为单位),超过指定的时长,Session 就会被销毁。
public int getMaxInactiveInterval()--获取 Session 的超时时间
public void invalidate()-- 让当前 Session 会话马上超时无效。
Session 默认的超时时间长为 30 分钟。
因为在 Tomcat 服务器的配置文件 web.xml中默认有以下的配置,它就表示配置了当前 Tomcat 服务器下所有的 Session 超时配置默认时长为:30 分钟。
<session-config> <session-timeout>30</session-timeout> </session-config>
如果说。你希望你的 web 工程,默认的 Session 的超时时长为其他时长。你可以在你自己的 web.xml 配置文件中做 以上相同的配置。就可以修改你的web 工程所有 Seession 的默认超时时长。
<!--表示当前 web 工程。创建出来 的所有 Session 默认是 20 分钟 超时时长--> <session-config> <session-timeout>20</session-timeout> </session-config>
如果你想只修改个别 Session 的超时时长。就可以使用上面的 API。
setMaxInactiveInterval(int interval)来进行单独的设置。
protected void life3(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // 先获取Session对象 HttpSession session = req.getSession(); // 设置当前Session3秒后超时 session.setMaxInactiveInterval(3); resp.getWriter().write("当前Session已经设置为3秒后超时"); }
示例代码:
设置当前 Session3 秒后超时
protected void life3(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // 先获取 Session 对象 HttpSession session = req.getSession(); // 设置当前 Session3 秒后超时 session.setMaxInactiveInterval(3); resp.getWriter().write("当前 Session 已经设置为 3 秒后超时"); }
Session 马上被超时示例:
protected void deleteNow(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { // 先获取 Session 对象 HttpSession session = req.getSession(); // 让 Session 会话马上超时 session.invalidate(); resp.getWriter().write("Session 已经设置为超时(无效)"); }
Session 技术,底层其实是基于 Cookie