Servlet’s Life…

Initializing… When the Web Container is started the container loads the servlet class and create the instance of  the servlet. The container calls the no-argument init() method (called only once) on the servlet instance after the servlet instance is created but before the servlet can service any request.   Servicing… 1. When a user clicks a ...