JSP Tutorial - JSP Session








HTTP is a "stateless" protocol.

Each time a client uses a new connection to talk to the server and the server does not keep any record of previous request.

There are three ways to keep the records of client.

  • Cookies - When using cookie, server can assign a unique ID to each web client and recognize the client by using that ID.

  • Hidden Form Fields - Server can send a hidden HTML form field along with a unique session ID. When the form is submitted, the specified name and value are automatically included in the GET or POST data.

  • URL Rewriting - We can append client ID to the end of URL to identify the user. For example, with http://java2s.com/abc/index.htm;sessionid=123. URL rewriting works for the browsers when they don't support cookies.

JSP uses HttpSession to work with session data.

By default, JSPs have session enabled and a new HttpSession object is created for each new client.

To disable the session tracking use the following code.

<%@ page session="false" %>

In JSP page we can use the HttpSession object with the implicit session object.

The following table lists the useful methods from session object:

MethodDescription
Object getAttribute(String name)returns the object bound with the specified name in session, or null.
Enumeration getAttributeNames()returns an Enumeration of String objects for the names of all the objects in session.
long getCreationTime()returns the session creation time in milliseconds since midnight January 1, 1970 GMT.
String getId()returns a string containing the unique identifier for this session.
long getLastAccessedTime()returns the last time the client sent a request associated with this session, as the number of milliseconds since midnight January 1, 1970 GMT.
int getMaxInactiveInterval()returns the maximum time interval, in seconds, that the servlet container will keep this session open between client accesses.
void invalidate()invalidates this session.
boolean isNew()returns true if the session is new to the client.
removeAttribute(String name)removes the object by name from the session.
void setAttribute(String name, Object value)binds an object to session by name
void setMaxInactiveInterval(int interval)Sets the time, in seconds, between client requests before the servlet container will invalidate this session.




Example

The following code shows how to use the HttpSession object.

<%@ page import="java.io.*,java.util.*" %>
<%
   Date createTime = new Date(session.getCreationTime());
   Date lastAccessTime = new Date(session.getLastAccessedTime());

   String title = "Welcome Back";
   Integer visitCount = new Integer(0);
   String visitCountKey = "visitCount";
   String userIDKey = new String("userID");
   String userID = new String("Java2s_ID");

   if (session.isNew()){
      title = "Welcome";
      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>
<body>
id:<% out.print( session.getId()); %><br/>
Creation Time:<% out.print(createTime); %><br/>
Time of Last Access:<% out.print(lastAccessTime); %><br/>
User ID:<% out.print(userID); %>
Number of visits:<% out.print(visitCount); %><br/>
</body>
</html>

Save the above code in main.jsp and try to access http://localhost:8080/main.jsp.





Deleting Session Data

To remove an attribute, call removeAttribute(String name) method.

To delete the whole session, call invalidate() method to delete an entire session.

To set Session timeout, call setMaxInactiveInterval(int interval) method to set the timeout for a session individually.

We use the following xml tags in web.xml to set the session timeout time in minutes.

<session-config>
    <session-timeout>15</session-timeout>
  </session-config>

The default timeout is 30 minutes in Tomcat.

The getMaxInactiveInterval( ) method returns the timeout period in seconds.