SE452: The Session Tracking API [6/16] ![]() ![]() ![]() |
The Java Servlets API includes support for session tracking
The interface HttpSession encapsulates the session information
The session is stored on the server
Tracking is performed using Cookies or URL-rewriting and is transparent to the servlet
The scope of an HTTPSession is the entire webapp
The session persists until it expires on the server, or it is expired in code
Programming issues: