What is the need of session tracking in HttpServlet ?
Answer Posted / muthusenthil
As per http protocol no user information is pertained.
every request is considered as a new request and there will
not be any session maintained between requests. so to
maintain users information we have to use session
tracking
Is This Answer Correct ? | 14 Yes | 0 No |
Post New Answer View All Answers
What are the different ways we can maintain state between requests?
Who is responsible for writing a constructor?
What is the difference in between the httpservlet and generic servlet?
request parameter how to find whether a parameter exists in the request object?
What do you mean by default initialization in java servlet?
Why HttpServlet class is declared abstract?
When is the servlet instance created in the life cycle of servlet? What is the importance of configuring a servlet?
How to rectify errors in java servlet while compilation?
When servlet is loaded?
What is servlet used for?
How do you get the ip address of the client in servlet?
Is servlet a controller?
How the typical servlet code look like ?
Explain the role of dispatcherservlet and contextloaderlistener.
What is the difference between genericservlet and httpservlet