The Servlet Life Cycle
- Initialization: Creation and initialization of resources the
Servlet might need to service requests (init() method)
- Service: Represents all interactions with requests until the
Servlet is destroyed (service() method)
- Destruction: Represents when a Servlet is removed from use by a
container (destroy() method)