I understand that if we use the following instruction
HttpSession session = request.getSession();
Creates a unique session identifier, creates a cookie, and associates a cookie with a session identifier.
and helps the container track and identify customers.
Yes, my question is, is it possible to see the header of the cookie and the unique identifier created using this request.getSession()? operator request.getSession()?
source share