SyntaxFix
Write A Post
Hire A Developer
Questions
Just complementing what Donal Fellows said, you can use List with @RequestParam
public String controllerMethod(@RequestParam(value="myParam") List<ObjectToParse> myParam){ .... }
Hope it helps!