<img alt="" src="https://secure.leadforensics.com/150446.png " style="display:none;">
Go to top icon

Session Management

Madhura Oak Nov 27, 2013

Java JEE Technology

There are three ways of session management in n-tier applications:

  1. Client-side session management – The client takes care of managing the session state. This can be done using cookies or hidden form fields. Since the session state is maintained by the client this is also called as a stateless session. The session state can be restored even if the server crashes.
  2. Server-side session management –The session state is maintained by the server. Stateful session beans in EJB or HttpSession is used to maintain the session state. The session state cannot be restored if the server crashes.
  3. Database session management – The session state is stored in the database. This is a type of stateful session management in which the session state can be restored when the server crashes.

In this blog, I’m writing about both advantages and drawbacks of client-side and server-side session management.

The following factors determine whether we should use the stateless or stateful session management:

  1. Number of requests across which the session state needs to be maintained.
  2. The number of users using the application at a time.
  3. The size of data which needs to be maintained in a session.

Drawbacks of client-side session management

  1. The sites which use cookies for session management cannot be used if cookies are disabled in a browser.
  2. Some data such as product price can be modified in a form, if hidden form fields are used. In such cases, information can be retrieved again on the server side and verified.
  3. Sensitive data should not be stored as hidden form fields.
  4. Encryption may be required in client-side session management.
  5. Data needs to be resent to the client in each response. As the number of requests across which the session state is maintained increase, it can be a performance overhead.
  6. If the size of data to be maintained in a session is large, client-side session management is not preferred.
  7. The cookie size cannot exceed 4KB. Maximum 180 cookies can be created per domain.
  8. The value in cookies and hidden form fields needs to be stringified and it may not be possible to convert complex objects into strings. Also, the conversion from object to string and back to object can add to performance overhead.

Advantages of client-side session management

  1. No impact of server crash in between requests.
  2. When there are two or more requests across which the state needs to be maintained and the number of users concurrently accessing the application is more, then client-side session management is preferred.
  3. The session need not be replicated on other server if the requests are routed by a load balancer.

Drawbacks of server-side session management

  1. When you use stateful session beans for managing session state, then the EJB container has to manage the beans. When all the beans in the pool are exhausted, the EJB container has to activate and passivate the beans when they are used and not used respectively. This could be an overhead as the number of users and duration of a session increases.
  2. When HttpSession is used to maintain session state, then the number of HttpSession objects that the server’s heap has to maintain grow as the number of users grow.
  3. It cannot survive server crash. If the session state is lost, it cannot be reproduced. The session state can be stored in database to survive server crash.
  4. Large objects should not be stored in HttpSession . If you are not using Stateful Session beans then a better alternative is to use database session management.
  5. Session migration takes place if the request is handled by the other server in the cluster. This is an overhead.

Advantages of server-side session management

  1. If the number of requests across which the session state needs to be maintained is more, server-side session management is faster as the session data need not be resent to the client in each response.

If the data which needs to be maintained in a session is large, server-side session management is preferred. However, HttpSession should not store large objects.

e-Zest is a leading digital innovation partner for enterprises and technology companies that utilizes emerging technologies for creating engaging customers experiences. Being a customer-focused and technology-driven company, it always helps clients in crafting holistic business value for their software development efforts. It offers software development and consulting services for cloud computing, enterprise mobility, big data and analytics, user experience and digital commerce.