728x90
반응형
정부프레임워크 페이징처리
-
전자정부 프레임워크 Paging 시스템 ? PaginatnionINfo자바웹프로그래밍/전자정부프레임워크-번외 2020. 4. 23. 10:37
1. PaginatnionInfo.class public class PaginationInfo { /** * Required Fields * - 이 필드들은 페이징 계산을 위해 반드시 입력되어야 하는 필드 값들이다. * * currentPageNo : 현재 페이지 번호 * recordCountPerPage : 한 페이지당 게시되는 게시물 건 수 * pageSize : 페이지 리스트에 게시되는 페이지 건수, * totalRecordCount : 전체 게시물 건 수. */ private int currentPageNo; private int recordCountPerPage; private int pageSize; private int totalRecordCount; public int getRecordCo..