用户打开浏览器,访问Web服务器的资源,会话建立,直到有一方断开连接,会话结束。在一次会话中可以包含多次请求和响应。
一种维护浏览器状态的方法,服务器需要识别多次请求是否来自于同一浏览器,以便在同一次会话的多次请求间共享数据。
Http协议是无状态的,每次浏览器向服务器请求时,服务器都会将该请求视为新的请求,因此我们需要会话跟踪技术来实现会话内数据共享。
方法名 | 方法类型 | 方法作用 |
---|---|---|
addCookie(Cookie cookie) | void | 向服务器发送Cookie |
@WebServlet("/demo01Cookie")
public class CookieDemo01 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
/* 1、设置Cookie */
Cookie cookie = new Cookie("username","zhangsan");
/* 2、发送Cookie */
resp.addCookie(cookie);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doPost(req,resp);
}
}
访问"demo01Cookie"
右键-检查-Application-Cookies 看到了手动发送的Cookie
方法名 | 方法类型 | 方法作用 |
---|---|---|
getCookies | Cookie[] | 获取所有的Cookie |
getName | String | 获取Cookie的名字 |
getValue | String | 获取Cookie的值 |
@WebServlet("/demo02Cookie")
public class CookieDemo02 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
/* 1、获取Cookies */
Cookie[] cookies = req.getCookies();
/* 2、遍历Cookies,获取自己想要的Cookie */
for (Cookie cookie : cookies) {
/* 3、获取cookie的名字 */
String name = cookie.getName();
if(name.equals("username"))
{
/* 4、获取cookie的值 */
String value = cookie.getValue();
System.out.println(name+":"+value);
}
}
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doGet(req,resp);
}
}
Cookie是基于Http协议的,服务器第一次访问Servlet的时候,Servlet通过响应头set-Cookie将Cookie发送到浏览器,浏览器会自动cookie存放到Cookie
Servlet发送Cookie
浏览器存放Cookie
默认情况下,Cookie在浏览器关闭之后就会自动消失。
方法名 | 方法类型 | 方法作用 |
---|---|---|
setMaxAge(int expiry) | void | 设置Cookie的生命周期,单位是秒 |
其中expiry的值有三种情况:
默认情况下,是不支持存储中文的,甚至会报错,这里采用的方法是对字符串先转码再解码的方式存储中文。
方法名 | 方法类型 | 方法作用 |
---|---|---|
URLEncoder.encode(String s, String enc) | String | 对s进行转码 |
URLDecoder.decode(String s, String enc) | String | 对s进行解码 |
发送Cookie端
@WebServlet("/demo01Cookie")
public class CookieDemo01 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
/* 1、设置Cookie */
/*Cookie cookie = new Cookie("username","zhangsan");*/
/* 1.1 对字符串转码 */
String value = "张三";
value = URLEncoder.encode(value,"UTF-8");
/* 1.2 设置Cookie */
Cookie cookie = new Cookie("username",value);
System.out.println("value的值是:"+value);
/* 2、设置Cookie的生命周期(单位是s) */
/* 设置Cookie的生命周期是7天 */
cookie.setMaxAge(60*60*24*7);
/* 3、发送Cookie */
resp.addCookie(cookie);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doPost(req,resp);
}
}
接受Cookie端
@WebServlet("/demo02Cookie")
public class CookieDemo02 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
/* 1、获取Cookies */
Cookie[] cookies = req.getCookies();
/* 2、遍历Cookies,获取自己想要的Cookie */
for (Cookie cookie : cookies) {
/* 3、获取cookie的名字 */
String name = cookie.getName();
if(name.equals("username"))
{
/* 4、获取cookie的值 */
String value = cookie.getValue();
System.out.println("获取的值是:"+value);
/* 4.1 解码 */
value = URLDecoder.decode(value,"UTF-8");
System.out.println(name+":"+value);
}
}
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doGet(req,resp);
}
}
方法名 | 方法类型 | 方法左右 |
---|---|---|
request.getSession() | HttpSession | 获取Session的对象 |
setAttribute(String name, Object value) | void | 设置Session的键值对 |
getAttribute(String name) | Object | 根据name找到value |
removeAttribute(String name) | void | 根据name移除Session |
Session是不需要发送的,因为Session本身就存放在服务端
设置Session的一端
@WebServlet("/Session01Demo")
public class SessionDemo01 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
/* 1、获取Session对象 */
HttpSession session = req.getSession();
/* 2、设置Session对象 */
session.setAttribute("username","zhangsan");
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doGet(req,resp);
}
}
获取Session的一段
@WebServlet("/Session02Demo")
public class SessionDemo02 extends HttpServlet {
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
/* 1、获取Session对象 */
HttpSession session = req.getSession();
/* 2、根据名字获取Session */
Object username = session.getAttribute("username");
session.removeAttribute("username");
System.out.println(username);
}
@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
this.doGet(req,resp);
}
}
服务器请求Servlet,Servlet会自动生成一个SessionID 并存在本地,并将这个id通过set-cookie:JSESSIONID发送到浏览器,浏览器存储在Cookies中,下一次浏览器访问Servlet的时候,会携带JSESSIONID,Servlet通过这个Id去本地文件查找session。
默认情况下,如果你没有任何操作,Session会在30分钟后自动销毁。
<session-config>
<session-timeout>100session-timeout>
session-config>
调用session.invalidate()方法销毁Session
Session销毁有什么用吗?
*再次启动服务器,从文件中加载数据到Session中
默认情况下,如果你没有任何操作,Session会在30分钟后自动销毁。
<session-config>
<session-timeout>100session-timeout>
session-config>
[外链图片转存中…(img-DlOIMn8T-1663206985748)]
调用session.invalidate()方法销毁Session
Session销毁有什么用吗?
Session一般用在登录登出功能之上,Session的销毁可以便于完成登出的功能!