- Servlet 教程
- Servlet - 主页
- Servlet - 概述
- Servlet - 环境设置
- Servlet - 生命周期
- Servlet - 示例
- Servlet - 表单数据
- Servlet - 客户端请求
- Servlet - 服务器响应
- Servlet - Http 代码
- Servlet - 编写过滤器
- Servlet - 例外
- Servlet - Cookie 处理
- Servlet - 会话跟踪
- Servlet - 数据库访问
- Servlet - 文件上传
- Servlet - 处理日期
- Servlet - 页面重定向
- Servlet - 点击计数器
- Servlet - 自动刷新
- Servlet - 发送电子邮件
- Servlet - 包装
- Servlet - 调试
- Servlet - 国际化
- Servlet - 注释
- Servlet 有用资源
- Servlet - 问题与解答
- Servlet - 快速指南
- Servlet - 有用的资源
- Servlet - 讨论
Servlet - 会话跟踪
HTTP 是一种“无状态”协议,这意味着每次客户端检索网页时,客户端都会打开与 Web 服务器的单独连接,并且服务器会自动不保留先前客户端请求的任何记录。
仍然有以下三种方法来维持 Web 客户端和 Web 服务器之间的会话 -
cookie
Web 服务器可以将唯一的会话 ID 作为 cookie 分配给每个 Web 客户端,并且对于来自客户端的后续请求,可以使用收到的 cookie 来识别它们。
这可能不是一个有效的方法,因为很多时候浏览器不支持cookie,所以我不建议使用这个程序来维护会话。
隐藏表单字段
Web 服务器可以发送隐藏的 HTML 表单字段以及唯一的会话 ID,如下所示 -
<input type = "hidden" name = "sessionid" value = "12345">
该条目意味着,当提交表单时,指定的名称和值将自动包含在 GET 或 POST 数据中。每次网络浏览器发回请求时,session_id 值可用于跟踪不同的网络浏览器。
这可能是跟踪会话的有效方法,但单击常规 (<A HREF...>) 超文本链接不会导致表单提交,因此隐藏的表单字段也无法支持一般会话跟踪。
网址重写
您可以在每个标识会话的 URL 末尾附加一些额外的数据,服务器可以将该会话标识符与其存储的有关该会话的数据相关联。
例如,对于 http://tutorialspoint.com/file.htm;sessionid = 12345,会话标识符附加为 sessionid = 12345,可以在 Web 服务器上访问该标识符以识别客户端。
URL 重写是维护会话的更好方法,即使浏览器不支持 cookie,它也能正常工作。URL 重写的缺点是您必须动态生成每个 URL 来分配会话 ID,即使是简单的静态 HTML 页面。
HttpSession 对象
除了上述三种方式之外,servlet 还提供 HttpSession 接口,该接口提供了一种在多个页面请求或访问网站时识别用户并存储有关该用户的信息的方法。
Servlet 容器使用此接口在 HTTP 客户端和 HTTP 服务器之间创建会话。会话会在用户的多个连接或页面请求中持续一段指定的时间。
您可以通过调用 HttpServletRequest 的公共方法getSession()来获取 HttpSession 对象,如下所示 -
HttpSession session = request.getSession();
在向客户端发送任何文档内容之前,您需要调用request.getSession() 。以下是通过 HttpSession 对象可用的重要方法的摘要 -
先生。 | 方法及说明 |
---|---|
1 | 公共对象 getAttribute(字符串名称) 该方法返回本会话中与指定名称绑定的对象,如果该名称下没有绑定任何对象,则返回 null。 |
2 | 公共枚举 getAttributeNames() 此方法返回 String 对象的枚举,其中包含绑定到此会话的所有对象的名称。 |
3 | 公共长 getCreationTime() 此方法返回创建此会话的时间,以格林威治标准时间 1970 年 1 月 1 日午夜以来的毫秒为单位。 |
4 | 公共字符串 getId() 此方法返回一个字符串,其中包含分配给该会话的唯一标识符。 |
5 | 公共长 getLastAccessedTime() 此方法返回会话的上次访问时间,格式为自格林尼治标准时间 1970 年 1 月 1 日午夜以来的毫秒数 |
6 | 公共 int getMaxInactiveInterval() 此方法返回 servlet 容器在客户端访问之间保持会话打开的最大时间间隔(秒)。 |
7 | 公共无效无效() 此方法使该会话无效并解除绑定到它的任何对象。 |
8 | 公共布尔值 isNew( 如果客户端尚不知道会话或客户端选择不加入会话,则此方法返回 true。 |
9 | 公共无效removeAttribute(字符串名称) 此方法从此会话中删除与指定名称绑定的对象。 |
10 | public void setAttribute(字符串名称,对象值) 此方法使用指定的名称将对象绑定到此会话。 |
11 | 公共无效setMaxInactiveInterval(int间隔) 此方法指定 servlet 容器使该会话无效之前客户端请求之间的时间(以秒为单位)。 |
会话跟踪示例
此示例描述如何使用 HttpSession 对象查找会话的创建时间和上次访问时间。如果新会话尚不存在,我们会将其与请求关联起来。
// Import required java libraries import java.io.*; import javax.servlet.*; import javax.servlet.http.*; import java.util.*; // Extend HttpServlet class public class SessionTrack extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { // Create a session object if it is already not created. HttpSession session = request.getSession(true); // Get session creation time. Date createTime = new Date(session.getCreationTime()); // Get last access time of this web page. Date lastAccessTime = new Date(session.getLastAccessedTime()); String title = "Welcome Back to my website"; Integer visitCount = new Integer(0); String visitCountKey = new String("visitCount"); String userIDKey = new String("userID"); String userID = new String("ABCD"); // Check if this is new comer on your web page. if (session.isNew()) { title = "Welcome to my website"; session.setAttribute(userIDKey, userID); } else { visitCount = (Integer)session.getAttribute(visitCountKey); visitCount = visitCount + 1; userID = (String)session.getAttribute(userIDKey); } session.setAttribute(visitCountKey, visitCount); // Set response content type response.setContentType("text/html"); PrintWriter out = response.getWriter(); String docType = "<!doctype html public \"-//w3c//dtd html 4.0 " + "transitional//en\">\n"; out.println(docType + "<html>\n" + "<head><title>" + title + "</title></head>\n" + "<body bgcolor = \"#f0f0f0\">\n" + "<h1 align = \"center\">" + title + "</h1>\n" + "<h2 align = \"center\">Session Infomation</h2>\n" + "<table border = \"1\" align = \"center\">\n" + "<tr bgcolor = \"#949494\">\n" + " <th>Session info</th><th>value</th> </tr>\n" + "<tr>\n" + " <td>id</td>\n" + " <td>" + session.getId() + "</td> </tr>\n" + "<tr>\n" + " <td>Creation Time</td>\n" + " <td>" + createTime + " </td> </tr>\n" + "<tr>\n" + " <td>Time of Last Access</td>\n" + " <td>" + lastAccessTime + " </td> </tr>\n" + "<tr>\n" + " <td>User ID</td>\n" + " <td>" + userID + " </td> </tr>\n" + "<tr>\n" + " <td>Number of visits</td>\n" + " <td>" + visitCount + "</td> </tr>\n" + "</table>\n" + "</body> </html>" ); } }
编译上述 servlet SessionTrack并在 web.xml 文件中创建适当的条目。现在,当您第一次运行时,运行http://localhost:8080/SessionTrack将显示以下结果 -
Welcome to my website
Session Infomation
Session info value id 0AE3EC93FF44E3C525B4351B77ABB2D5 Creation Time Tue Jun 08 17:26:40 GMT+04:00 2010 Time of Last Access Tue Jun 08 17:26:40 GMT+04:00 2010 User ID ABCD Number of visits 0
现在尝试第二次运行相同的 servlet,它将显示以下结果。
Welcome Back to my website
Session Infomation
info type value id 0AE3EC93FF44E3C525B4351B77ABB2D5 Creation Time Tue Jun 08 17:26:40 GMT+04:00 2010 Time of Last Access Tue Jun 08 17:26:40 GMT+04:00 2010 User ID ABCD Number of visits 1
删除会话数据
当您处理完用户的会话数据后,您有多种选择 -
删除特定属性- 您可以调用public void removeAttribute(String name)方法来删除与特定键关联的值。
删除整个会话- 您可以调用public void invalidate()方法来丢弃整个会话。
设置会话超时- 您可以调用public void setMaxInactiveInterval(int Interval)方法来单独设置会话的超时。
将用户注销- 支持 servlet 2.4 的服务器,您可以调用logout将客户端从 Web 服务器注销并使属于所有用户的所有会话无效。
web.xml 配置- 如果您使用 Tomcat,除了上述方法之外,您还可以在 web.xml 文件中配置会话超时,如下所示。
<session-config> <session-timeout>15</session-timeout> </session-config>
超时以分钟表示,并覆盖 Tomcat 中默认的 30 分钟超时。
Servlet 中的 getMaxInactiveInterval( ) 方法返回该会话的超时时间(以秒为单位)。因此,如果您的会话在 web.xml 中配置为 15 分钟,则 getMaxInactiveInterval( ) 将返回 900。