Correct description of @RequestParam with WebFlux

See gh-28944
This commit is contained in:
Andy Wilkinson
2022-08-09 14:15:30 +01:00
committed by Stephane Nicoll
parent 6685e78c36
commit d6b60046ce

View File

@@ -1851,8 +1851,8 @@ and others) and is equivalent to `required=false`.
| For access to name-value pairs in URI path segments. See <<webflux-ann-matrix-variables>>.
| `@RequestParam`
| For access to Servlet request parameters. Parameter values are converted to the declared
method argument type. See <<webflux-ann-requestparam>>.
| For access to query parameters. Parameter values are converted to the declared method argument
type. See <<webflux-ann-requestparam>>.
Note that use of `@RequestParam` is optional -- for example, to set its attributes.
See "`Any other argument`" later in this table.