By: Sathya Narayana in JSP Tutorials on 2010年10月24日 [フレーム]
The Session object in JSP provides a way to maintain state information across multiple requests made by the same client. It is an instance of the HttpSession class and can be obtained using the request.getSession() method.
The Session object provides a number of methods to manage session information. Some of the commonly used methods are:
setAttribute(String name, Object value): Sets the value of an attribute with the specified name in the session.
getAttribute(String name): Returns the value of the attribute with the specified name in the session.
removeAttribute(String name): Removes the attribute with the specified name from the session.
invalidate(): Invalidates the session, removing all attributes and ending the session.
Here's an example of how to use the Session object in a JSP:
<%@ page import="javax.servlet.http.HttpSession" %>
<%
// Get the session object
HttpSession session = request.getSession();
// Set an attribute in the session
session.setAttribute("username", "john");
// Get an attribute from the session
String username = (String) session.getAttribute("username");
// Remove an attribute from the session
session.removeAttribute("username");
// Invalidate the session
session.invalidate();
%>
In this example, we first obtain the Session object using the request.getSession() method. We then set an attribute named "username" in the session using the setAttribute() method, and retrieve its value using the getAttribute() method. We also remove the attribute using the removeAttribute() method and invalidate the session using the invalidate() method.
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
Most Viewed Articles (in JSP )
Show a calendar for user input in JSP
Encrypting Passwords in Tomcat using Servlets
JSP Tags for SQL to connect to a database
Steps to get a Free SSL certificate for your Tomcat
Uploading a file to a server using JSP
Server Side Programming using JSP
Latest Articles (in JSP)
Show a calendar for user input in JSP
Steps to get a Free SSL certificate for your Tomcat
Encrypting Passwords in Tomcat using Servlets
JSP Tags for SQL to connect to a database
Uploading a file to a server using JSP
Uploading an Image to a Database using JSP
A JSP page that gets properties from a bean
Scriptlets and Expressions in JSP
The taglib, tag, include, attribute and the variable Directive in JSP
Show a calendar for user input in JSP
Encrypting Passwords in Tomcat using Servlets
Steps to get a Free SSL certificate for your Tomcat
JSP Tags for SQL to connect to a database
Uploading an Image to a Database using JSP
Uploading a file to a server using JSP
© 2023 Java-samples.com
Tutorial Archive: Data Science React Native Android AJAX ASP.net C C++ C# Cocoa Cloud Computing EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Trends WebServices XML Office 365 Hibernate
Latest Tutorials on: Data Science React Native Android AJAX ASP.net C Cocoa C++ C# EJB Errors Java Certification Interview iPhone Javascript JSF JSP Java Beans J2ME JDBC Linux Mac OS X MySQL Perl PHP Python Ruby SAP VB.net EJB Struts Cloud Computing WebServices XML Office 365 Hibernate