If I have a HTML in a <form>
like this:
<input type="text" value="someValue1" name="myValues"/>
<input type="text" value="someValue2" name="myValues"/>
<input type="text" value="someValue3" name="myValues"/>
<input type="text" value="someValue4" name="myValues"/>
I know that in servlets I am able to get values using:
String[] values = request.getParameterValues("myValues");
How can I do something similar using Spring MVC?