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

에러가 난 부분은 import org.springframework.data.annotation.Id;
import org.springframework.data.annotation.Id; -> import javax.persistence.Id; 로 바꿔주면 됩니다.