can't directly bind to a List
I can't directly bind a List.
in the request, I have
Code:
employmentHistory[0].employmentHistoryPK=
employmentHistory[0].manager=fdsafdsa
employmentHistory[0].position=dsaffdsa
employmentHistory[0].salary=fdsafdsa
Then I directly bind it to a List
Code:
List<EmploymentHistory> employmentHistory =.....
ServletRequestDataBinder binder = new ServletRequestDataBinder(employmentHistory);
binder.bind(request);
The data is NOT binded to 'employmentHistory'.
How to fix it ?
Thanks.