在java中添加cookie然后HTTP重定向不会在客户端显示cookie

发布于 2024-10-07 16:18:13 字数 377 浏览 7 评论 0原文

我有一个要求,我需要在java中添加cookie,然后将其重定向到不同的URL。现在这个 url 进程应该保留我设置的 cookie,并在处理后将其发送回客户端。代码如下,

Cookie cookie = new Cookie("name", "value")
// To make sure cookie is established for all the url paths
cookie.setPath(request.getContextPath());
response.addCookie(cookie);
response.sendRedirect("someNewUrl");

请帮助我了解如何在整个重定向生命周期和客户端中保留 cookie。提前致谢。

I have requirement where in i need to add cookie in java and then redirect it to different URL. Now this url process should persist the cookie which i set and after its processing send it back to client. The code goes as follows

Cookie cookie = new Cookie("name", "value")
// To make sure cookie is established for all the url paths
cookie.setPath(request.getContextPath());
response.addCookie(cookie);
response.sendRedirect("someNewUrl");

Please help me regarding how can i persist the cookie throughout the redirect lifecycle and to the client. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

素手挽清风 2024-10-14 16:18:13

尝试将 cookie 添加到响应中:

Cookie cookie = new Cookie("user", "anonymous");
response.addCookie(cookie);

另请参阅:

Try to actually add the cookie to the response:

Cookie cookie = new Cookie("user", "anonymous");
response.addCookie(cookie);

See also:

欢烬 2024-10-14 16:18:13

您是否将 cookie 添加到响应中?
我看到了刚刚创建 cookie 的代码。

试试这个:

 Cookie c = new Cookie(name,value);
    c.setMaxAge( 3 * 30 * 24 * 60 * 60 );
    c.setPath( "/" );
    response.addCookie( c );

Did you add the cookie to the response?
I'm seeing the code that just creates the cookie.

Try this :

 Cookie c = new Cookie(name,value);
    c.setMaxAge( 3 * 30 * 24 * 60 * 60 );
    c.setPath( "/" );
    response.addCookie( c );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文