Request Delegation and Request Scope
- Servlets, being Java classes, follow Java scoping rules but their
behavior also introduces request, application, and
session scope.
- Request scope arises because requests can be delegated from one servlet
to another:
- The HttpServletRequest class is associated with the
RequestDispatcher class.
- RequestDispatcher has a forward() method for
delegating requests.