BoardSearch
페이지 정보
본문
package web.repository;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import web.domain.Board;
import web.dto.BoardListReplyCountDTO;
public interface BoardSearch {
Page<Board> search1(Pageable pageable);
Page<Board> searchAll(String[] types, String keyword, Pageable pageable);
Page<BoardListReplyCountDTO> searchWithReplyCount(String[] types, String keyword, Pageable pageable);
Page<BoardListReplyCountDTO> searchWithAll(String[] types, String keyword, Pageable pageable);
}
- 이전글● 목록 데이터 - 'N+1' 문제 24.06.29
- 다음글BoardSearchImpl 24.06.29
댓글목록
등록된 댓글이 없습니다.