ETC
[JPA] 오류 : Unable to locate Attribute with the the given name [id] on this ManagedType
SICDev
2021. 7. 8. 20:52
반응형
토이 프로젝트 API를 개발하던 도중
Unable to locate Attribute with the the given name [id] on this ManagedType라는 메세지가 나왔다!
Entity에 변수명을 id가 아닌 Id로 해놔서 문제였던 거다❗
private Long Id; -> private Long id; 로 바꾸니까 잘됐다!
반응형