java设置cookie,重定向后这个cookie获取不到 通过设置domain、path可以获取到这个cookie domain 是域 path 是访问的路径 Cookie cookie = new Cookie("token", xxxxxxxxxx); cookie.setDomain("localhost"); cookie.setPath("/"); httpServletResponse.addCookie(cookie);