Let me explain my problem. In my project, currently we are showing some record fetched from the DB in tabular format and if user wants to edit it user can click the edit button, after clicking the edit button user will be redirected to the next screen where he can update the data and come back to search screen.

Now the requirement has changed. Editing should be done on the same page where search result is getting displayed.

It means if user is on the User detail list screen then user details will be shown in tabular format and user can update one or all the record at the same time with single click of Update button.

I am having bean for user details and i know how to update one by one record as i have done in previous scenario. But how can i map the list of userdetails from page to controller.

Please provide me some standard way to this.