- Understand what servlets are and their role
- Explain servlet architecture components
- Describe the servlet lifecycle phases
- Write basic servlet classes
- Configure servlets using web.xml and annotations
flowchart LR
A[Client Browser] -->|HTTP Request| B[Web Server]
B -->|Delegate| C[Servlet Container]
C -->|Call| D[Servlet]
D -->|Query| E[Database]
E -->|Data| D
D -->|Response| C
C -->|HTTP Response| B
B -->|Display| A