Getting HTTP Session in JSF

import javax.faces.context.FacesContext;

public void addInSession() {
MySession mySession = new MySession();
mySession.setName(getMsg());

/* .getSession(boolean), true if we want to create new session, if want touse oldsession then false*/
FacesContext context = FacesContext.getCurrentInstance();
HttpSession session = (HttpSession) context.getExternalContext().getSession(false);
session.setAttribute("sessionObj", mySession);

if (session.getAttribute("sessionObj") != null) {
MySession mySavedSession = (MySession) session.getAttribute("sessionObj");
System.out.println("HTTP Session: " + mySavedSession.getName());
} else {
// do something
}
}

You May Also Like

3 Comments

  1. I have this error com.sun.faces.portlet.PortletSessionWrapper cannot be cast to javax.servlet.http.HttpSession with the same code 🙁

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.