BoardSearchImpl
페이지 정보
본문
package web.repository;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.support.QuerydslRepositorySupport;
import web.domain.Board;
public class BoardSearchImpl extends QuerydslRepositorySupport implements BoardSearch{
public BoardSearchImpl() {
super(Board.class);
}
@Override
public Page<Board> search1(Pageable pageable) {
return null;
}
}
- 이전글BoardSearch 24.06.17
- 다음글BoardRepository 24.06.17
댓글목록
등록된 댓글이 없습니다.