본문 바로가기

Spring

[Spring] JPA - No Property Found for Type Exception

JPA를 사용하여 개발 중에 "No property xxx found for type xxxx!" 라는 에러가 뜨면서 골머리를 썩혔다..

xxx는 각자 다를 수 있겠지만..

underscore(_)를 엔티티의 레퍼런스 필드의 프로퍼티를 조회하는 예약어로 사용하고 있기 때문에 사용을 피하라고 되어있어서 다음과 같이 변경하였다.

그다음에 Model에서

@Column Annotation을 사용하여 name을 지정해주고 기존 Property는 동일하게 Underscore를 제거하여 해결하였다.

 

 

참조사이트 : https://stackoverflow.com/questions/19583540/spring-data-jpa-no-property-found-for-type-exception