728x90
Spring Data JPA를 사용하는중, 생성 일자로 정렬을 하기 위해 아래와 같이 Repository에 선언을 했는데, No property 'desc' found for type 'LocalDateTime’라는 에러가 발생했다.
Page<Project> findAllOrderByCreateDateDesc(Pageable pageable);
LocalDateTime 타입에 desc 속성을 찾을 수 없다고 오류가 발생하는데, 해결 방법은 매우 간단하게 findAll 뒤에 'By'를 붙여주면 깔끔하게 동작한다.
Page<Project> findAllByOrderByCreateDateDesc(Pageable pageable);
728x90
'JAVA > Spring' 카테고리의 다른 글
[Spring] GlobalExceptionHandler와 Custom Exception으로 전역 예외처리하기 (0) | 2022.10.26 |
---|---|
[Spring Security] BCryptPasswordEncoder란? (2) | 2022.10.15 |
Spring Boot에서 Querydsl 5.0 Gradle 설정하기 (0) | 2022.10.02 |
[Spring Boot] Swagger-ui로 API Docs 자동화하기 (0) | 2022.09.01 |
[Spring Boot] LocalDateTime Format 설정하기 (0) | 2022.08.26 |