jgangemi...b4 l came to the Simple Paging Tag , l have gone a long way , from displaytag , valuelist , PagedListHolder , .... a lot more , l used them . For pagedListHolder , you can refer to http://forum.springframework.org/showthread.php?t=11954 , http://forum.springframework.org/showthread.php?t=9735 , further more , you can see it from the sample application jpetstore - the codes for SearchProductsController.java :
Code:
public ModelAndView handleRequest(HttpServletRequest request, HttpServletResponse response) throws Exception {
if (request.getParameter("search") != null) {
String keyword = request.getParameter("keyword");
if (keyword == null || keyword.length() == 0) {
return new ModelAndView("Error", "message", "Please enter a keyword to search for, then press the search button.");
}
else {
PagedListHolder productList = new PagedListHolder(this.petStore.searchProductList(keyword.toLowerCase()));
productList.setPageSize(4);
request.getSession().setAttribute("SearchProductsController_productList", productList);
return new ModelAndView("SearchProducts", "productList", productList);
}
}
else {
String page = request.getParameter("page");
PagedListHolder productList = (PagedListHolder) request.getSession().getAttribute("SearchProductsController_productList");
if ("next".equals(page)) {
productList.nextPage();
}
else if ("previous".equals(page)) {
productList.previousPage();
}
return new ModelAndView("SearchProducts", "productList", productList);
}
}
You can see from the code above , the author do paging inside the controller , the controller collect "next" and "previous" parameters for paging , it is not portable and painful ... if you really study my codes for simple paging , l did not do that . The more serious part is the PagedListHolder collect a whole List.
can you not store the necessary data inside the session to avoid long query strings?
what is that mean ? did l store something inside the session ?
...you did not do your homework b4 answering the question ....hihi..
This is not a post concerning paging ....but more focus on continuation ... 
moon