如何使用泽西为重定向页面设置cookie?

时间:2013-12-26 17:22:57

标签: java rest jersey

我正在尝试为重定向的页面设置烹饪(如下所示),但它没有被带到重定向的页面。想知道是否有人可以帮助我如何设置cookie以使其可用于重定向页面。

URI location = null;
    try {
        location = new URI("../lin/oq");
    } catch (URISyntaxException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
    return Response.temporaryRedirect(location).cookie(new NewCookie("userId", userId,"/", "localhost",null,10000, false),new NewCookie("token",token.getToken(), null,null,null,10000, false),new NewCookie("org",org, null,null,null,10000, false),new NewCookie("courseId", courseId, null,null,null,10000, false)).build();

0 个答案:

没有答案