
SpringBoot Project
[SpringBoot] 게시판 Pagination(Pageable 이용한 페이징), 리스트 불러오기
게시판 페이징을 구현하여 게시글 리스트를 불러오려고 한다. 아래의 사진과 같이 구현하고자 하였다. 게시물 5개씩 불러오기 Pagination 부분에 7개 고정하기 먼저 Board Entity에서 리스트로 끌어올때 필요한 정보들을 모아둔 DTO를 구성했다. @Getter public class BoardListDTO { private long bno; private String title; private int readCount; private String writer; private LocalDateTime updatedDate; private LocalDate toDay; private String writerId; //Entity를 -> BoardListDTO(BoardEntity ent) publi..