Cookie cookie = Cookie.cookie(cookieName, cookieValue);
cookie.setPath("/service/");
cookie = cookie.setDomain( config.getString("cookie_domain"));
cookie.setMaxAge(15813);
routingContext.addCookie(cookie);
这是我在Vertx中创建cookie的代码的一部分。我可以在邮递员中看到Cookie,但是指定的域与此处指定的域不匹配。当前cookie域是被发射机器的ip /域地址,是否有可能在Vertx的路由上下文中修改该域?
预先感谢