[QueryDsl] QueryDsl + Paging & CountQuery 최적화
SpringData의 Page 인터페이스와 Pageable 인터페이스, 그리고 Page 구현체 public PageImpl(List content, Pageable pageable, long total) PageableExecutionUtils.getPage(content, pageable, countQuery::fetchOne) 로 경우에 따라 Count쿼리 최적화 를 사용한다. count 분리 안하고 한번에 조회 Pageable interface로 page,size,sort를 자동 매핑하여 사용하게 하고, getOffset(), getPageSize() 등으로 꺼내 queryDsl의 offset,limit 메서드등에 인자로 넣어준다. Page 객체로 return해주기 위해 PageImpl(실 retu..