将cookie路径设置为斜杠(/)

时间:2014-05-23 05:59:43

标签: java jsp cookies subdomain

我试图从子域设置cookie,然后我成功了。但我无法将Cookie路径设置为"/"

我在我的jsp页面中设置了cookie,如下所示

  Cookie cookie = new Cookie("IsLoggedIn","true");
  cookie.setDomain(".parent.com");
  cookie.setMaxAge(0);
  cookie.setPath("/");
  response.addCookie(cookie);
  response.sendRedirect("login.jsp");

这个login.jsp位于某些父域中我的框架。如果您看到我将路径设置为"/",但将Cookie路径设为/wager-online,但我需要将其作为

"/"

在下面的firebug屏幕截图中查看cookie是如何生成的。

enter image description here

我该怎么做?

1 个答案:

答案 0 :(得分:0)

cookie.setMaxAge(0);

将max-age设置为0表示删除该cookie。您应该将其设置为正整数或使用默认值。