Servlet Life Cycle
§ Servlet Instantiation:
§  Loading the servlet class and creating a new
instance
§ Servlet Initialization:
§ Initialize the servlet using the init() method
§ Servlet processing:
§ Handling 0 or more client requests using the
service() method
§ Servlet Death:
§ Destroying  the servlet using the destroy() method
3