dwr « Session « JSP-Servlet Q&A





1. What is session in java?    stackoverflow.com

I far i understand Httpsession concepts in Java.

 HttpSession ses = req.getSession(true);
will create a session object, according to the request.
setAttribute("String", object);
will, binds the 'String', and value with the Session object.
getAttribute("String");
will ...