JSP

Detailed Explanation of of on cookie Loss in jsp


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);