本次练习的记录历史记录/购物车代码:https://github.com/mio4/Learn-Java/tree/master/Head%20First%20Java%20Web/BasicDemo7
(一)会话
(1)数据存储
- HTTP协议是一种无状态协议
- 用户在上次访问过程中产生的数据可以通过会话技术保存
- 会话技术分为两种
- Cookie
- Session
(二)Cookie
(1)定义
- Cookie是指网站为了辨别用户身份而存储在本地终端(Client)上的数据
- Cookie是浏览器端会话技术
- Cookie的定义:Cookie保存在客户端
- Cookie的工作流程:浏览网页时,服务器把Cookie发送到用户端,下次访问相同网站时,服务器就能通过Cookie判断是否是以前的用户访问
- 构造方法
Cookie cookie = new Cookie(String name, String value); //创建一个新的Cookie:名称-对应值,保存的都是String类型
(2)用法
- 使用Cookie,可以将用户访问服务器的时间保存到Cookie
- 记录用户的上次访问时间
- 保存用户的浏览记录
setMaxAge(int n) 设置Cookie在浏览器中的存活时间(单位为s)
(3)历史记录
- 使用Cookie存储浏览器访问的记录
- 每次访问页面时将记录添加到字符串中,生成新的Cookie
- 使用jsp页面获取Cookie,提取之后展示在主页
- 清空历史记录
- 创建一个clearHistory的Servlet
- 创建一个同名的Cookie(路径以及key和存储历史记录的Cookie相同)
- response.addCookie(新Cookie) 用来覆盖原有的Cookie
(三)Session
- Sesssion(会话)是一种持久化网络协议
- Session是服务器端会话技术
- Session对象由服务器创建
(1)生命周期
request.getSession() //获取一个Session(HttpSession)对象
- 创建:调用request.getSession()方法
- 销毁
- session超时:默认时间为30min(在tomcat的web.xml中可查看)
- 手动销毁:session.invalidate()
(2)购物车功能
Map<String,Integer> map = (Map<String,Integer>) request.getSession().getAttribute("cart");
Integer count = 1;
if(map == null){ //购物车为空,创建一个新的购物车
map = new HashMap<String,Integer>();
request.getSession().setAttribute("cart",map); //首次创建Session对象中的cart Attribute
} else{
count = map.get(name);
if(count == null){
count = 1;
} else {
count++;
}
}
map.put(name,count);
- 清空购物车
- invalidate方法
public class ClearCart extends HttpServlet {
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
doGet(request,response);
}
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
//0.设置编码
response.setContentType("text/html;charset=UTF-8");
//1.清空session
request.getSession().invalidate();
//2.重定向
response.sendRedirect(request.getContextPath()+"/cart.jsp");
}
}