HttpServletRequest getCookies()始终返回null Jersey Api

时间:2015-09-30 22:51:53

标签: java spring jersey

我可以将Cookie添加到响应中并在我的Chrome浏览器上查看它。我通过设置检查了它 - > advancedSettings - >内容设置。

@Context
HttpServletRequest servletRequest;
Cookie[] cookies = servletRequest.getCookies();

我使用@Context获取请求,getCookies()始终返回null。

我可以使用Inspect Element在chrome中查看请求标头中的cookie。

1 个答案:

答案 0 :(得分:0)

我正在使用@context UriInfo和uriInfo变量添加一个带有其标题的cookie部分的请求。

我能够将cookie作为单个String提取并对其进行字符串操作,但它可以正常工作。

仍然是HttpServletRequest getCookies它没有用。