package com.kyhslam.persistence; import java.util.Collection; import java.util.List; import org.springframework.data.domain.Pageable; import org.springframework.data.repository.CrudRepository; import com.kyhslam.domain.Board; public interface BoardRepository extends CrudRepository { // bno > ? ORDER BY bno DESC limit ?,? public List findByBnoGreaterThanOrderByBnoDesc(Long bno, Pageable paging); ..