Servlet HttpSession

HttpSession: HttpSession is an interface that provides a way to identify a user in multiple page requests. A unique session ID is given to the user when the first request comes. This ID is stored in a request parameter or in a cookie. How to get a session object? HttpServletRequest interface’s getSession() method is used … Read more