[Spring Data JPA] No property desc/asc found for type Error
JPA쿼리 메소드를 작성해서 사용하다 보면 위 제목과 같은 에러가 발생한다.
프로젝트를 하던 도중....
List<Product> findAllOrderByCreatedAtDesc();
위와 같이 쿼리 메소드를 만들어주었는데, 아래와 같이 에러가 발생했다.
findAllOrderByCreatedAtDesc()! No property 'desc' found for type 'LocalDateTime'! Traversed path: Product.createdAt.
해결 방법은 간단한데, 아래와 같이 All과 Order 사이에 By를 넣어서 바꾸어 주면 된다.
List<Product> findAllByOrderByCreatedAtDesc();
영어로 봐도 되게 이상한 wording인데 Sping data jpa 이슈 보드에서 설명한 이유에 따르면,
The first "By" in a query method indicates the start of a path expression.
첫번째 "By"가 경로의 시작점을 잡아주기 때문이라고 한다..
출처: https://github.com/spring-projects/spring-data-jpa/issues/1174
Author And Source
이 문제에 관하여([Spring Data JPA] No property desc/asc found for type Error), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@davidko/Spring-Data-JPA-No-property-descasc-found-for-type-Error저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)