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)