File tree Expand file tree Collapse file tree
docs/modules/ROOT/pages/spring-cloud-gateway-server-webmvc/filters Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -106,20 +106,21 @@ The following two example routes are equivalent:
106106spring:
107107 cloud:
108108 gateway:
109- mvc:
110- routes:
111- - id: retry_route
112- uri: https://example.org
113- filters:
114- - name: Retry
115- args:
116- retries: 3
117- statuses: INTERNAL_SERVER_ERROR
118- methods: GET
119- - id: retryshortcut_route
120- uri: https://example.org
121- filters:
122- - Retry=3,INTERNAL_SERVER_ERROR,GET
109+ server:
110+ webmvc:
111+ routes:
112+ - id: retry_route
113+ uri: https://example.org
114+ filters:
115+ - name: Retry
116+ args:
117+ retries: 3
118+ statuses: INTERNAL_SERVER_ERROR
119+ methods: GET
120+ - id: retryshortcut_route
121+ uri: https://example.org
122+ filters:
123+ - Retry=3,INTERNAL_SERVER_ERROR,GET
123124----
124125
125126== Forcing Framework Retry Filter
You can’t perform that action at this time.
0 commit comments