I have a controller with the POST handler defined like so:
@RequestMapping(value=\"/ajax/saveVendor.do\", method = RequestMethod.POST) public @ResponseBody A
Define the field to be List (interface), not ArrayList (concrete type):
List
ArrayList
private List emailAddresses = new ArrayList();