Grzegorz Borkowski opened SPR-6021 and commented
If you send GET request with multiple params (and changing number thereof), instead of writing method like this:
method(@RequestParam String param1, @RequestParam String param2, @RequestParam String param3, @RequestParam String param4, ...)
it would be simpler to use MutliValueMap for this purpose:
method(@RequestParam MutliValueMap params)
(or create new annotation @RequestParams
for this purpose)
Affects: 3.0 M3