[SoloProject] Caused by: org.hibernate.AnnotationException: No identifier specified for entity

YuLim·2023년 2월 21일
1

💥 Error

목록 보기
8/14

스프링 부트로 솔로 프로젝트(투두리스트 작성 앱)의 백엔드를 구현중입니다.
구현 중 Caused by: org.hibernate.AnnotationException: No identifier specified for entity와 같은 에러가 발생 했고 찾아보니 Entity @Idimport문제라고 합니다.


에러가 난 부분은 import org.springframework.data.annotation.Id;

해결

import org.springframework.data.annotation.Id; -> import javax.persistence.Id; 로 바꿔주면 됩니다.

profile
개인 공부 기록장

0개의 댓글