2015-09-30 108 views
0

我可以將cookie添加到響應中並在我的瀏覽器上查看它。我通過設置 - > advancedSettings - >內容設置來檢查它。HttpServletRequest getCookies()總是返回null Jersey Api

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

我使用@Context獲取請求,getCookies()總是返回null。

我能夠使用檢查元素在鉻中查看請求標頭中的cookie。

+0

我能夠在請求標頭中找到cookie作爲地圖「cookie」。我添加了多個cookie,並且在此我只有一個cookie。儘管getCookies返回null。這是有點混亂。 – user1364861

回答

0

我正在使用@context UriInfo和uriInfo變量添加一個請求,它的標頭的cookie部分。

我能夠提取cookie作爲單個字符串,並對其進行字符串操作,但它工作正常。

Still HttpServletRequest getCookies它沒有工作。