如何保存Cookie并在Spring MVC中重定向?

时间:2018-06-20 02:44:29

标签: spring-mvc

我得到一个提供登录api的任务,一旦用户登录,我便重定向到index.html页面,并将用户名另存为cookie。

我尝试了这个,但是没有用。

@RequestMapping(value = "/direct", method = RequestMethod.GET)
public void login(HttpServletRequest request, HttpServletResponse response) throws IOException {
    response.addCookie(new Cookie("foo", String.valueOf(RandomUtils.nextInt())));
   return "redirect:/index.html";
}

重定向成功,但未保存cookie。

0 个答案:

没有答案