- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the session Object in JSP?
The session object is used to track a client session between client requests.
JSP makes use of the servlet provided HttpSession Interface. This interface provides a way to identify a user across.
- a one-page request or
- visit to a website or
- store information about that user
By default, JSPs have session tracking enabled and a new HttpSession object is instantiated for each new client automatically. Disabling session tracking requires explicitly turning it off by setting the page directive session attribute to false as follows −
<%@ page session = "false" %>
The JSP engine exposes the HttpSession object to the JSP author through the implicit session object. Since the session object is already provided to the JSP programmer, the programmer can immediately begin storing and retrieving data from the object without any initialization or getSession().
- Related Articles
- What is session attribute in JSP?
- What methods of session object is used frequently in JSP and for what purpose?
- How is Session Management done in JSP?
- What is the out implicit object in JSP?
- How to delete Session data in JSP?
- What is a request object in JSP?
- What is a response object in JSP?
- What is an application Object in JSP?
- What is a config Object in JSP?
- What is a pageContext Object in JSP?
- What is a page object in JSP?
- How can you delete a session data in JSP?
- What is an exception Object in JSP? What type of exceptions can occur in a JSP page?
- Please share a working example of session maintenance in JSP.
- What is the use of page object in JSP? Need an example.

Advertisements