当前位置:网站首页>Cookie Technology & session Technology & ServletContext object
Cookie Technology & session Technology & ServletContext object
2022-07-06 07:05:00 【aigo-2021】
One 、Cookie technology
Http The agreement has one feature , Namely No state , The data of each request response is not persisted . But I'm doing something Web When needed , It is necessary to record the user's status .
Cookie Technology can record some user information on the client . adopt ServletAPI Provided in Cookie class , Data can be stored in the client cookie In file , When sending a request ,cookie The contents of the file are contained in http In request .
Realize data passing Cookie Store on client , Create on the server side Cookie Class object , Encapsulate data into Cookie In the object , adopt response Object will Cookie Object responds back to the client , The client will automatically Cookie The data of is stored in the folder specified by the client Cookie In file .
for example : Visit one TestServlet1 Send a name Store to client :
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.Cookie;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
@WebServlet("/text1.do")
public class TestServlet1 extends HttpServlet {
@Override
protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
// take tom name Store to access this Servlet On the client side of
Cookie cookie = new Cookie("name1","tom");
cookie.setMaxAge(60*60*24);
resp.addCookie(cookie);
Cookie cookie1 = new Cookie("name2","jack");
cookie1.setMaxAge(60*60*24);
resp.addCookie(cookie1);
Cookie cookie2 = new Cookie("password","123");
cookie2.setMaxAge(60*60*24);
resp.addCookie(cookie2);
}
}
Access in browser http:localhost:8080/emp/text1.do View the stored Cookie data
You can visit a site , Get the... Of this site in the request Cookie data ( Client's )
@WebServlet("/text2.do")
public class TestServlet2 extends HttpServlet {
@Override
protected void service(HttpServletRequest request, HttpServletResponse resp) throws
ServletException, IOException {
// get Client stored Cookie
Cookie[] cookies = request.getCookies();
for(Cookie cookie:cookies){
System.out.println(cookie.getName()+","+cookie.getValue());
}
}
}
Two 、Session technology
Session Is the meaning of conversation , A session object representing the client and server , An object stored on the server .
When the client accesses the server , A session object will be created on the server , When the client accesses the server again , This session object is still used , No request response is generated within the validity of the session object , The session object will be destroyed ,tomcat Of session The default validity period of is 20 minute
There is a hash table storing session objects on the server ( Hashtable ), When the browser accesses the server , The server reads the browser Cookie Zhongcun Stored session id.
3、 ... and 、Session Object lifecycle
because Session It has a long life cycle , Can be directed to Session Store some data in , Then the life cycle of these data is equivalent to session Life week of period , For example, how long does the login status need to be saved ? As long as there is a request response operation , You need to save the login status .
How to talk to Session Medium storage data :
HttpSession The interface provides setAttribute Method , Can be directed to Session Object to store data .
Store the data
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.*;
import java.io.IOException;
@WebServlet("/text1.do")
public class TestServlet1 extends HttpServlet {
@Override
protected void service(HttpServletRequest request, HttpServletResponse resp) throws ServletException, IOException {
// towards Session Object full name tom
// First, get session object
HttpSession session = request.getSession();
//session Object encapsulates a Map object , Stored data in Map in , Generally speaking, it is stored in Session Properties of
session.setAttribute("name1","tom");//key,value Form storage of
}
}
get data
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.*;
import java.io.IOException;
@WebServlet("/text2.do")
public class TestServlet2 extends HttpServlet {
@Override
protected void service(HttpServletRequest request, HttpServletResponse resp) throws
ServletException, IOException {
// obtain Session Data in
HttpSession session = request.getSession();
System.out.println(session.getAttribute("name1"));
}
}
get Session data , First visit text1.do, Revisit text2.do
Four 、 Set up Session The period of validity
stay web.xml in , Set up session The period of validity , The unit is minutes
<session-config>
<session-timeout>1</session-timeout><!-- Set to 1 minute -->
</session-config>
Is there any request response within the validity period ,Session Be destroyed
Of course , You can also call HttpSession Methods , Give Way Session Object invalidation
// Give Way session invalid
session.invalidate();
session Invalidation and destruction are different ,session The attribute value cannot be obtained after expiration , Nor can it fail again , Can't do these operations , but session Object still exists ;session The destruction of objects is Session The object doesn't exist , wipe out .
5、 ... and 、ServletContext object
ServletContext yes Servlet Context object , Also called application context object . stay Web The server (tomcat) Startup time ServletContext Object created ,Web When the server is destroyed ,ServletContext Object destroyed .
ServletContext Object lifecycle Longer than Session
Can be directed to ServletContext Object to store some data , The life cycle of data is related to ServletContext The life cycle is the same . through setAttribute and getAttribute Method to store and obtain
reflection :
What kind of data exists Session in ? What kind of data exists ServletContext in ?
The data shared by each page is stored in Session in ; Data shared by all users is stored in ServletContext in
边栏推荐
- SSO process analysis
- What is the biggest problem that fresh e-commerce is difficult to do now
- Attributeerror: can 't get attribute' sppf 'on < module' models. Common 'from' / home / yolov5 / Models / comm
- The difference between get and post request types
- 编译,连接 -- 笔记 -2
- Practical guidance for interface automation testing (Part I): what preparations should be made for interface automation
- [daily question] 729 My schedule I
- Uncaught typeerror: cannot red properties of undefined (reading 'beforeeach') solution
- Latex文字加颜色的三种办法
- Introduction to ros2 installation and basic knowledge
猜你喜欢
Setting and using richview trvstyle template style
leetcode841. 钥匙和房间(中等)
[server data recovery] case of offline data recovery of two hard disks of IBM server RAID5
Kubernetes cluster builds ZABBIX monitoring platform
AI on the cloud makes earth science research easier
Short video, more and more boring?
首发织梦百度推送插件全自动收录优化seo收录模块
WPF之MVVM
19. Actual memory management of segment page combination
The ECU of 21 Audi q5l 45tfsi brushes is upgraded to master special adjustment, and the horsepower is safely and stably increased to 305 horsepower
随机推荐
Do you really know the use of idea?
leetcode841. Keys and rooms (medium)
基于PyTorch和Fast RCNN快速实现目标识别
leetcode6109. 知道秘密的人数(中等,周赛)
BUU的MISC(不定时更新)
Is it difficult for girls to learn software testing? The threshold for entry is low, and learning is relatively simple
AttributeError: Can‘t get attribute ‘SPPF‘ on <module ‘models.common‘ from ‘/home/yolov5/models/comm
Hydra common commands
ROS learning_ Basics
A method to measure the similarity of time series: from Euclidean distance to DTW and its variants
Apache dolphin scheduler source code analysis (super detailed)
Simple use of JWT
从autojs到冰狐智能辅助的心里历程
Brief introduction to the curriculum differences of colleges and universities at different levels of machine human major -ros1/ros2-
Top test sharing: if you want to change careers, you must consider these issues clearly!
树莓派3B更新vim
编译,连接 -- 笔记 -2
Practical guidance for interface automation testing (Part I): what preparations should be made for interface automation
【Hot100】739. Daily temperature
19.段页结合的实际内存管理