class SessionStorage extends HttpServlet
{
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
{
HttpSession session=request.getSession();
int schoolId=100;
session.setAttribute("schoolId", schoolId);
}
}
I just want to know where the schoolId
attribute is stored. Either it is on the web container (ex. tomcat) or in Memory (eg .RAM).
And which location i will find this attributes if it on the server?