JpaRepository의 findAll 사용 시 sort 하는 방법
JpaRepository의
findAll
sort
List<Tour> tours = tourRepository.findAll(Sort.by(Sort.Direction.DESC, "id"));