关掉浏览器之后再打开,还能使购物车中的内容存在
HttpSession session = request.getSession();
String sessionid = session.getId();
Cookie cookie = new Cookie(“JSESSIONID”,sessionid);
cookie.setPath(“/ShoppingWithSession”);
cookie.setMaxAge(30*60);
response.addCookie(cookie);
String sessionid = session.getId();
Cookie cookie = new Cookie(“JSESSIONID”,sessionid);
cookie.setPath(“/ShoppingWithSession”);
cookie.setMaxAge(30*60);
response.addCookie(cookie);
session.setAttribute(“name”,”洗衣机”);
版权声明:本文为Rookie_hh原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。