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


Reply With Quote