Programming servlets saving objects to application scope
request.getSession().getServletContext().setAttribute("applicationmap", map);
retrieving from application scope
Map smap = (Map)request.getSession().getServletContext().getAttribute("applicationmap");
idea from exampledepot
Comments