Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
YourSessionBean yourSessionBean = null;
synchronized (session) {
yourSessionBean = (YourSessionBean)
pageContext.getAttribute("yourSessionBean",PageContext.SESSION_SCOPE);
if ( yourSessionBean == null ) {
try {
yourSessionBean = (YourSessionBean) Beans.instantiate(
getClassLoader(),
"YourSessionBean"
);
}catch (Exception exc) {
throw new Exception(" Cannot create bean of class YourSessionBean \n"+exc);
}
pageContext.setAttribute("yourSessionBean",
yourSessionBean,
PageContext.SESSION_SCOPE
);
}
}