使用SpringCloud Gateway进行路由后,Cookie丢失,无法设置到前端
两个服务,分别为接口提供服务api-service和gateway。直接调用api-service时,通过response.addCookie()设置Cookie后:Cookie cookie = new Cookie(cookieName, cookieValue);cookie.setMaxAge(cookieMaxAge);cookie.setPath("/");cookie.setDomain(request.getServerName());response.add