What are the various ways of session supervision in servlets?

devquora
devquora

Posted On: Feb 22, 2018

 

A session is a colloquial link between the server and the client. Session handles a lot of requests and supplies the answer within the client and server. As both the HTTP and web server are unsettled, so for the maintenance of a session it is necessary to have some bizarre request that has to be passed between the server and the client.

The various method that is used to manage session in servlets are

  • Cookies
  • HTML Hidden Field
  • URL Rewriting
  • User Authentication
  • Session Management API

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    Java Servlet Interview Questions

    What do you mean by Servlet?

    It is designed by the Java software company. It is used to extend the ability of the server...

    Java Servlet Interview Questions

    Which HTTP method is said to be non-idempotent and idempotent?

    If any HTTP brings the same result every time then it means it is idempotent...