Suppose a hyperlink is clicked and an url is fired with the following parameter list myparam=myValue1&myparam=myValue2&myparam=myValue3 . Now how can I
myparam=myValue1&myparam=myValue2&myparam=myValue3
It seems you can't get
Map
because all your params have same name "myparam"
Try this instead:
public ModelAndView method(@RequestParam("myparam") List params) { }