// 오름차순 내림차순 설정
Sort.Direction direction = isAsc ? Sort.Direction.ASC : Sort.Direction.DESC;
// direction : 정렬 방식
// sortBy : 정렬 컬럼
Sort sort = Sort.by(direction, sortBy);
Pageable pageable = PageRequest.of(page, size, sort);
Page<Product> products = productRepository.findAllByUser(user, pageable);
'TIL' 카테고리의 다른 글
팀과제 피드백 (0) | 2024.09.04 |
---|---|
Spring Boot 웹개발 Entity 상속관계 만들기 (0) | 2024.09.02 |
Entity 연관 관계 ( 1 : 1 / N : 1 / 1 : N / N : M ) (0) | 2024.08.23 |
SpringBoot mvc Repository (0) | 2024.08.14 |
Spring Boot MVC Controller @Controller 와 @RestController (0) | 2024.08.12 |