要在示例中设置cookie,您可以执行以下操作:
return Response.ok(new Viewable("/index", model)) .cookie(new Newcookie("name", "Hello, world!")) .build();但是,如果要重定向到“ /”,则还需要返回3xx响应而不是200,例如:
return Response.seeOther("/") .cookie(new Newcookie("name", "Hello, world!")) .build();


