-
Spring Data JPA DTO 사용 시 매핑 에러가 발생할 때(org.springframework.data.mapping.PropertyReferenceException: No property ...)자바/스프링 2021. 10. 8. 22:33
Entity가 아닌 DTO를 리턴하는 커스텀 Repository 메서드를 작성할 때, 메서드 이름에 "By 키워드가 없는 경우" 아래와 같은 매핑 에러가 발생한다.
org.springframework.data.mapping.PropertyReferenceException: No property ... found for type Entity 클래스 이름!
즉, 조건문 없이 DTO List를 리턴하는 커스텀 findAll 메서드를 작성할 때도 메서드 이름 마지막에 By 키워드를 넣어야 한다.
public interface UserRepository extends JpaRepository<User, Long> { List<UserNameDto> findUserNameListBy(); }
By 키워드는 Entity의 일부 데이터를 조회하는 등의 파생쿼리를 실행하겠다는 의미이다.
출처:
'자바 > 스프링' 카테고리의 다른 글
Plain jar vs Executable jar(feat. plain jar 생성 방지) (0) 2021.11.08 Spring Data JPA 페이징과 정렬 (0) 2021.10.12 스프링부트 H2 데이터베이스 설정 방법 (1) 2021.10.04 스프링부트 profile 설정 방법 (0) 2021.10.03