我有以下设置:
现在,我有一个应用程序loc可以为loc3子域设置一些Cookie 。我看到在chrome网络响应中设置(或假设设置了)cookie。
loc
loc3
Set-Cookie: MY_COOKIE=YUMM; domain=loc3.localdomain; expires=Fri, 21-Jun-2019 10:48:58 GMT; path=/coolApp/bro
然后在app中,loc我有一个按钮,该按钮将用户发送到另一个app中loc2,该用户将用户重定向到loc3at loc3.localdomain:8092/coolApp/bro/something/more。因此,目前我应该在的应用程序请求中看到cookie loc3,但我没有看到。
loc2
loc3.localdomain:8092/coolApp/bro/something/more
Cookies设置:
FacesContext facesContext = FacesContext.getCurrentInstance(); //facesContext.getExternalContext().addResponseCookie("TEST", "TEST", properties); tried this too //then in properties will be the maxAge, path and domain set Cookie cookie = (Cookie) facesContext.getExternalContext().getRequestCookieMap().get("MY_COOKIE"); if(cookie == null){ cookie = new Cookie("MY_COOKIE", "YUMMM"); } cookie.setMaxAge(31536000); cookie.setPath("/coolApp/bro"); cookie.setDomain("loc3.localdomain"); // I've tried ".localdomain" too HttpServletResponse response = (HttpServletResponse) facesContext.getExternalContext().getResponse(); response.addCookie(cookie);
知道此设置有什么问题吗?
基于此(https://curl.haxx.se/rfc/cookie_spec.html),该域至少应包含2个点,因此答案是对本地主机使用其他别名来模拟我的子域。就像是:*.example.com
*.example.com
更改域后,所有工作均按预期进行。