Getting HTTP Session in JSF
Posted on 08. Apr, 2007 by Tahir Akram in Development
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
}
}



Can Bayraktar
21. Oct, 2008
Thanks for you expression. Very beneficial a article.
K4T0
13. Nov, 2008
I have this error com.sun.faces.portlet.PortletSessionWrapper cannot be cast to javax.servlet.http.HttpSession with the same code
Alessandro
31. Jul, 2009
Thank you…it works!