paging bean (1) 썸네일형 리스트형 페이징 전용 클래스 [PagingBean] public class PagingBean { private int nowPage = 1; private int postCountPerPage = 10;//페이지당 게시물수 private int pageCountPrePageGroup = 5;//페이지 그룹당 페이지수 private int totalPostCount;//총 게시물수 public PagingBean(int totalPostCount) { super(); this.totalPostCount = totalPostCount; } public PagingBean(int totalPostCount ,int nowPage) { super(); this.nowPage = nowPage; this.totalPostCount = totalPostCount;.. 이전 1 다음