본문으로 바로가기

org.hibernate.AnnotationException: No identifier specified for entity

 

 

# 원인

@Id annotation 사용 시 import 실수
import org.springframework.data.annotation.Id; (X)

 

# 해결

import javax.persistence.Id; 로 변경

반응형