I'm new to Spring MVC and I'm creating a form with several attributes that the user needs to complete and I want to store a list of numbers into an Array and not create a variable for each field
I try this code, but doesn't work :
Linea 1 <form:input type="number" path="numberArray[0]"/>
Linea 2 <form:input type="number" path="numberArray[1]"/>
...
