session tracking
- it is important features in servlet
- every user of a site is associated with a javax.servlet.http.Httpsession object that can use to store and retrieve information about that user
- a servlet uses its request object's getsession() method to retrieve the current Httpsession object and can add data to an http session object with putvalue() method
- session tracking involves persistent cookies