How to perform pagination in jsp

前端 未结 3 432
梦谈多话
梦谈多话 2021-01-22 01:39

i need pagination concept to display 15 records. this is my jsp file.

<%
ArrayList al = new ArrayList();
%>
<%!String s;
int i;%>
<         


        
3条回答
  •  星月不相逢
    2021-01-22 02:28

    You can you the Display tag library. It provides paging capability for your JSP page. You just need to pass a list of objects to this taglib and it will add pagination to your page. It also support other functionality such as sorting, grouping, export, etc.

提交回复
热议问题