This commit is contained in:
Spencer Gibb
2017-08-23 15:43:12 -06:00
parent 348f9c8645
commit 3025134b93
3 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

@@ -30,7 +30,7 @@ If you include the starter, but, for some reason, you do not want the gateway to
[[gateway-how-it-works]]
== How It Works
image::{imagesurl}/gateway_diagram.png[Spring Cloud Gateway Diagram]
image::{imagesurl}/spring_cloud_gateway_diagram.png[Spring Cloud Gateway Diagram]
Clients make requests to Spring Cloud Gateway. If the Gateway Handler Mapping determines that a request matches a Route, it is sent to the Gateway Web Handler. This handler runs sends the request through a filter chain that is specific to the request. The reason the filters are divided by the dotted line, is that filters may execute logic before the proxy request is sent or after. All "pre" filter logic is executed, then the proxy request is made. After the proxy request is made, the "post" filter logic is executed.