Add Link to DispatcherServlet in Filter Review Doc

Closes gh-8036
This commit is contained in:
Rob Winch 2020-02-28 11:39:22 -06:00
parent 805ef55d9a
commit c554a3fc41
1 changed files with 1 additions and 0 deletions

View File

@ -9,6 +9,7 @@ The picture below shows the typical layering of the handlers for a single HTTP r
image::{figures}/filterchain.png[]
The client sends a request to the application, and the container creates a `FilterChain` which contains the ``Filter``s and `Servlet` that should process the `HttpServletRequest` based on the path of the request URI.
In a Spring MVC application the `Servlet` is an instance of https://docs.spring.io/spring-security/site/docs/current-SNAPSHOT/reference/html5/#servlet-filters-review[`DispatcherServlet`].
At most one `Servlet` can handle a single `HttpServletRequest` and `HttpServletResponse`.
However, more than one `Filter` can be used to: