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

时间:2010-12-16 00:44:25

标签: java cookies redirectwithcookies

我有需要在哪里需要在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。提前谢谢。

2 个答案:

答案 0 :(得分:2)

尝试将添加 Cookie添加到响应中:

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

另见:

答案 1 :(得分:1)

您是否在回复中添加了Cookie? 我看到的代码只是创建了cookie。

试试这个:

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