Servlet life cycle can be described as a series of steps through which a servlet goes during its life span, starting from loading till it gets destroyed.Let’s have look on these steps :
Servlet class is loaded.
Servlet instance is created.
init method is Called.
service method is Called.
destroy method is Called.
Life Cycle of servlet in java
Loading Servlet Class : A Servlet class is loaded when first request for the servlet is received by the Web Container.
Servlet instance creation :After the Servlet class is loaded, Web Container creates the instance of it. Servlet instance is created only once in the life cycle.
public void init(ServletConfig config) throws ServletException
Call to the init() method :init() method is called by the Web Container on servlet instance to initialize the servlet.
Syntax of init() method :
public void init(ServletConfig config) throws ServletException
Call to the service() method : The containers call the service() method each time the request for servlet is received. The service() method will then call the doGet() or doPost() methos based ont eh type of the HTTP request, as explained in previous lessons.
Syntax of service() method :
public void service(ServletRequest request, ServletResponse response)
throws ServletException, IOException
Call to destroy() method: The web container calls the destroy() method before removing the servlet instance from the service. It gives the servlet an opportunity to clean up any resource for example memory, thread etc.
Hey there, My name is Anup Maurya. I was born with love with programming and worked with TCS. One of best global (IT) services and consulting company as System Administrator . I also love graphics designing. It's my pleasure to have you here.