ตัวอย่างนี้อธิบายวิธีใช้อ็อบเจ็กต์ HttpSession เพื่อค้นหาเวลาที่สร้างและเวลาเข้าถึงล่าสุดสำหรับเซสชัน เราจะเชื่อมโยงเซสชันใหม่กับคำขอหากไม่มีอยู่
ตัวอย่าง
<%@ page import = "java.io.*,java.util.*" %>
<%
// Get session creation time.
Date createTime = new Date(session.getCreationTime());
// Get last access time of this Webpage.
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 Webpage.
if (session.isNew() ) {
title = "Welcome to my website";
session.setAttribute(userIDKey, userID);
session.setAttribute(visitCountKey, visitCount);
}
visitCount = (Integer)session.getAttribute(visitCountKey);
visitCount = visitCount + 1;
userID = (String)session.getAttribute(userIDKey);
session.setAttribute(visitCountKey, visitCount);
%>
<html>
<head>
<title>Session Tracking</title>
</head>
<body>
<center>
<h1>Session Tracking</h1>
</center>
<table border = "1" align = "center">
<tr bgcolor = "#949494">
<th>Session info</th>
<th>Value</th>
</tr>
<tr>
<td>id</td>
<td><% out.print( session.getId()); %></td>
</tr>
<tr>
<td>Creation Time</td>
<td><% out.print(createTime); %></td>
</tr>
<tr>
<td>Time of Last Access</td>
<td><% out.print(lastAccessTime); %></td>
</tr>
<tr>
<td>User ID</td>
<td><% out.print(userID); %></td>
</tr>
<tr>
<td>Number of visits</td>
<td><% out.print(visitCount); %></td>
</tr>
</table>
</body>
</html> ตอนนี้ใส่โค้ดด้านบนใน main.jsp และลองเข้าไปที่ http://localhost:8080/main.jsp . เมื่อคุณเรียกใช้ URL คุณจะได้รับผลลัพธ์ดังต่อไปนี้ -
ยินดีต้อนรับสู่เว็บไซต์ของฉัน
ข้อมูลเซสชัน
| ข้อมูลเซสชัน | ค่า |
|---|---|
| id | 0AE3EC93FF44E3C525B4351B77ABB2D5 |
| เวลาในการสร้าง | อังคาร มิ.ย. 08 17:26:40 GMT+04:00 2010 |
| เวลาของการเข้าถึงล่าสุด | อังคาร มิ.ย. 08 17:26:40 GMT+04:00 2010 |
| รหัสผู้ใช้ | ABCD |
| จำนวนครั้งที่เข้าชม | 0 |
ตอนนี้ให้ลองเรียกใช้ JSP เดิมเป็นครั้งที่สอง คุณจะได้ผลลัพธ์ดังต่อไปนี้
ยินดีต้อนรับกลับสู่เว็บไซต์ของฉัน
ข้อมูลเซสชัน
| ประเภทข้อมูล | ค่า |
|---|---|
| id | 0AE3EC93FF44E3C525B4351B77ABB2D5 |
| เวลาในการสร้าง | อังคาร มิ.ย. 08 17:26:40 GMT+04:00 2010 |
| เวลาของการเข้าถึงล่าสุด | อังคาร มิ.ย. 08 17:26:40 GMT+04:00 2010 |
| รหัสผู้ใช้ | ABCD |
| จำนวนครั้งที่เข้าชม | 1 |