Sort 방법에 제약사항이 있다. Sort 객체의 매개 값으로 오는 것은 Property 명, 또는 Alias 여야 할 것. public interface CommentRepository extends JpaRepository { List findByTitle(String titile, Sort sort); } @Test public void testSort(){ Comment comment = new Comment(); comment.setTitle("Spring?"); comment.setComment("Data JPA"); Comment savedComment = commentRepository.save(comment); List sortedComment = commentRepository.find..