当前位置: 代码迷 >> 综合 >> 电子商务:关掉浏览器之后再打开,…
  详细解决方案

电子商务:关掉浏览器之后再打开,…

热度:61   发布时间:2023-12-18 15:07:38.0
关掉浏览器之后再打开,还能使购物车中的内容存在
HttpSession session = request.getSession();
    String sessionid = session.getId();
    Cookie cookie = new Cookie("JSESSIONID",sessionid);
    cookie.setPath("/ShoppingWithSession");
    cookie.setMaxAge(30*60);
    response.addCookie(cookie);
session.setAttribute("name","洗衣机");