我得到一个提供登录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。