Detailed Explanation of of on cookie Loss in jsp

  • 2021-12-19 06:29:14
  • OfStack

If cookie is set in jsp, cookie will be lost if the path is not set


Cookie cookie = new Cookie(cookieName, value);
cookie.setMaxAge(3600);
cookie.setPath("/");
response.addCookie(cookie);

Related articles: