The session object is used to record the access status of each client within the session scope, so as to track the operation status of each client. The information stored in the session can obtain the valid data of these sessions when the browser makes subsequent requests. .
You can use the session object (the built-in object of jsp) directly in the jsp page, or you can get back the session object through pageContext.getSession() or request.getSession.
session can save user information and implement functions such as shopping carts.
HTTP protocol is a stateless protocol. The client sends a request to the server, and then the server returns a response. The connection is closed. The server does not save the relevant information about the connection, so during the next connection, The server no longer has previous connection information and cannot determine that this connection has the same client information as the previous connection. Therefore, a session must be used to record information about the connection.
From the moment the client opens the browser to connect to the server to the moment the client closes the browser and leaves the server, it is called a session. When a client accesses the server, he or she may repeatedly connect to several pages on the server, repeatedly refresh a page, or continuously submit information to a page, etc. The server should know that this is the same client through some method, and then a session is needed. object.
The working principle of session is as follows:
1. When a customer accesses a page on the server for the first time, the server will allocate a session object to the user and specify a unique ID for the session, and Send the ID to the client and write it into the cookie, so that the client and the server's session establish a one-to-one correspondence;
2. When the client continues to access other resources on the server, the server no longer A new session object is allocated to the client until the client browser is closed, times out, or the invalidate() method of the session is called to invalidate it, and the session between the client and the server ends.
3. When the customer reopens the browser to access the website, the server will reassign a session object to the customer and reassign the sessionID.
session object is mainly used for attribute operations and session management. Commonly used methods are as follows:
1, public void setAttribute(String name,String value)
Set the specified name The value of the attribute and adds it to the session scope. If this attribute exists within the session scope, changes the value of the attribute.
2, public Object getAttribute(String name)
Get the value of the attribute with the specified name in the session scope. The return value type is object. If the attribute does not exist, null is returned.
3. public void removeAttribute(String name)
, delete the session attribute with the specified name. If the attribute does not exist, an exception will occur.
4, public void invalidate()
, invalidate the session. The current session can be invalidated immediately, and all objects stored in the original session can no longer be accessed.
5, public String getId( )
, get the current session ID. Each session has a unique identifier sessionID on the server side. The only data sent by the session object to the browser is the sessionID, which is generally stored in a cookie.
6, public void setMaxInactiveInterval(int interval)
Set the maximum duration of the session in seconds. A negative number indicates that the session will never expire.
7, public int getMaxInActiveInterval()
, Get the maximum duration of the session.
8. Use the getCreationTime() and getLastAccessedTime() methods of the session object to obtain the session creation time and last access time, but the return value is milliseconds. Generally, you need to use the following conversion to obtain the specific date and time. time.
Date creationTime = new Date(session.getCreationTime()); Date accessedTime = new Date(session.getLastAccessedTime());
nbsp;HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <base>" rel="external nofollow" > <title>session对象方法</title> <meta> <meta> <meta> <meta> <meta> <!-- <link rel="stylesheet" type="text/css" href="styles.css" rel="external nofollow" > --> <b> 会话ID: <br> 是否新会话:<br> 设置和获取属性对象:用户名 = <br> 会话创建时间:<br> 上次访问时间:<br> 会话持续时间(s):<br> 修改后的会话持续时间(s):<br> </b>
Several commonly used methods to obtain session
1.spring mvc
HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest();
2.struts2
(1)
ActionContext context = ActionContext.getContext(); Map request = (Map) context.get("request"); Map session = context.getSession(); Map application = context.getApplication();
(2)
ActionContext actionContext = ActionContext.getContext(); HttpServletRequest request = (HttpServletRequest) actionContext .get(ServletActionContext.HTTP_REQUEST); HttpSession session = request.getSession(); ServletContext context = (ServletContext) actionContext .get(ServletActionContext.SERVLET_CONTEXT);
3. Obtain
HttpServletRequest request = ServletActionContext.getRequest(); HttpSession session = request.getSession();through ServletActionContext
The above is the detailed content of Analysis of session objects and method instances in java. For more information, please follow other related articles on the PHP Chinese website!

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于结构化数据处理开源库SPL的相关问题,下面就一起来看一下java下理想的结构化数据处理类库,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于PriorityQueue优先级队列的相关知识,Java集合框架中提供了PriorityQueue和PriorityBlockingQueue两种类型的优先级队列,PriorityQueue是线程不安全的,PriorityBlockingQueue是线程安全的,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于java锁的相关问题,包括了独占锁、悲观锁、乐观锁、共享锁等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于多线程的相关问题,包括了线程安装、线程加锁与线程不安全的原因、线程安全的标准类等等内容,希望对大家有帮助。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于枚举的相关问题,包括了枚举的基本操作、集合类对枚举的支持等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于Java的相关知识,其中主要介绍了关于关键字中this和super的相关问题,以及他们的一些区别,下面一起来看一下,希望对大家有帮助。

封装是一种信息隐藏技术,是指一种将抽象性函式接口的实现细节部分包装、隐藏起来的方法;封装可以被认为是一个保护屏障,防止指定类的代码和数据被外部类定义的代码随机访问。封装可以通过关键字private,protected和public实现。

本篇文章给大家带来了关于java的相关知识,其中主要介绍了关于平衡二叉树(AVL树)的相关知识,AVL树本质上是带了平衡功能的二叉查找树,下面一起来看一下,希望对大家有帮助。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Atom editor mac version download
The most popular open source editor

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
