내가보려고 쓰는 페이징 유틸이다. 기존소스를 일부 수정 이다. public class PagingUtil { private static final Logger LOGGER = LoggerFactory.getLogger(PagingUtil.class.getName()); public static void setPagingLimitValues(Map data, int pRowCount) { // 현제 페이지수 int cPage = Integer.parseInt(nvl(data.get("cPage"), "1")); // 한페이지에 보여질 데이터 수 int rowCount = 10; if(pRowCount > 0){ rowCount = pRowCount; } else{ rowCount = Integer.pars..