解决重定向丢失cookie问题

java设置cookie,重定向后这个cookie获取不到

通过设置domain、path可以获取到这个cookie

domain 是域 

path 是访问的路径

HttpServletResponse httpServletResponse = FacesUtil.getHttpServletResponse();
Cookie cookie = new Cookie(ConstantProp.DEFAULT_P2PTYPE,CCaiConstantProp.P2PTYPE);
cookie.setDomain("localhost");
cookie.setPath("/");
httpServletResponse.addCookie(cookie);

你可能感兴趣的:(java)