I have a REST web service which sends a cookie in the response. REST URL looks like http://localhost:8080/myfoo/service/v1/acc/login
我在《java法典》中建立了如下 co。
Response.ok(entity).cookie(new NewCookie("JSESSIONID", "12344", "/", "localhost", null, -1, false));
When I see the response header of the web service, cookie header looks like below
"JSESSIONID=12344;Domain=localhost;Path="/";Version=1"
但是,当我请求采取下述同样领域的其他道路时,
在请求中不寄送厨师。
因此,当我看望浏览器储存中的 co(使用内容环境)时,我会发现)。 我看到 co子下面的条目。
Name: JSESSIONID
Content: 12344
Domain: localhost
Path: /myfoo/service/v1/acc/login
Send for: Any kind of connection
Accessible to script: Yes
Created: Wednesday, July 13, 2016 at 5:04:40 PM
Expires: When the browsing session ends
因此,如果你注意到,浏览器库中 co鱼的归因与REST的对应服务不同。 这里有什么错误的想法?