File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1789,7 +1789,7 @@ supported for all return values, see below for more details.
1789
1789
`ResponseEntity`. See <<mvc-ann-async>> and <<mvc-ann-async-http-streaming>>.
1790
1790
1791
1791
| Reactive types -- Reactor, RxJava, or others via `ReactiveAdapterRegistry`
1792
- | Alternative to `` DeferredResult` with multi-value streams (e.g. `Flux`, `Observable`)
1792
+ | Alternative to `DeferredResult` with multi-value streams (e.g. `Flux`, `Observable`)
1793
1793
collected to a `List`.
1794
1794
1795
1795
For streaming scenarios -- e.g. `text/event-stream`, `application/json+stream` --
@@ -1899,7 +1899,7 @@ To get all matrix variables, use a `MultiValueMap`:
1899
1899
@GetMapping("/owners/{ownerId}/pets/{petId}")
1900
1900
public void findPet(
1901
1901
@MatrixVariable MultiValueMap<String, String> matrixVars,
1902
- @MatrixVariable(pathVar="petId"" ) MultiValueMap<String, String> petMatrixVars) {
1902
+ @MatrixVariable(pathVar="petId") MultiValueMap<String, String> petMatrixVars) {
1903
1903
1904
1904
// matrixVars: ["q" : [11,22], "r" : 12, "s" : 23]
1905
1905
// petMatrixVars: ["q" : 22, "s" : 23]
You can’t perform that action at this time.
0 commit comments