Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've never programmed with cookies before but I want to store some user data into a cookie so its always there when they load the web app even if the session has expired.

Whats the best way of doing this with JSF?

Thanks

share|improve this question
Cookies may be the wrong approach here. Cookies are for communication from the client to the server. If you want client-side storage, you should maybe look at DOM Storage. – Kerrek SB Jul 20 '11 at 14:15

1 Answer

up vote 6 down vote accepted

Writing to a cookie:

FacesContext.getCurrentInstance()
 .getExternalContext()
 .addResponseCookie("CookieName", "value", null);

Reading the cookie

Map<String, Object> requestCookieMap = FacesContext.getCurrentInstance()
   .getExternalContext()
   .getRequestCookieMap();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.