Having this http://myserver/find-by-phones?phone=123&phone=345 request, is it possible to handle with something like this:
@Controller
publi
I had an issue with indexed querystring like
http://myserver/find-by-phones?phone[0]=123&phone[1]=345
and only handling with
MultiValueMap worked for me. Neither List or String[] were handling it properly.
I also tried
@RequestParam("phones[]") but RequestParamMethodArgumentResolver is looking explicitly for phones[] ignoring indexes. So that is why I decided to let RequestParamMapMethodArgumentResolver handle it.