We're using displaytag's display:table to show some results in our Spring MVC application. This table is paginated and sorted by our own, sending POSTs to our controller, in which we're retrieving TableTagParameters to make the database query. After redirecting to another page, we need to send these tableTagParameters in URL to show the table properly. I'm wondering if there's any chance to send these parameters out of the URL, with modelAndView.addObject or something like that?
Anyone knows?