I have a table displayed on jsp page using <display:table> tags.this table is coming out of List<Account>
and one column i created is clickable using decorator. When i click link , it is redirected to a spring controller
and furthur processed.
All i want it to pass the same - object to the controller when link is clicked.
Something like that ..but its not being sent.
I dont want to send request params on Url and it would be great if i can send the whole object as a whole and wont have to send atrributes .
In jso i have table of List<Account> and using <form:hidden> for attributes also dint help.
Code:public String modifyAccountDetails(HttpServletRequest request, @ModelAttribute("Account") Account Account, Errors errors, .... ModelMap model) throws ConsoleException {


Reply With Quote