Support for "request parameters"

ServerWebExchange now provides access to "requestParams" as a
MulitValueMap with query parameters and form data combined.

The combined map is then used for the params condition of
@RequestMapping purposes () and also for @RequestParam arguments.

Issue: SPR-15000
This commit is contained in:
Rossen Stoyanchev
2016-12-15 09:51:21 -05:00
parent 36da299f96
commit 6119415427
12 changed files with 249 additions and 198 deletions

View File

@@ -43,7 +43,8 @@ import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue;
/**
* Parameterized tests for ServletWebRequest
* "checkNotModified" unit tests for {@link DefaultServerWebExchange}.
*
* @author Rossen Stoyanchev
*/
@RunWith(Parameterized.class)