Troubleshooting 1

박영준·2022년 11월 28일
0

Troubleshooting

목록 보기
1/19

문제 상황

JPA 기초 강의를 따라 코드를 작성하던 중
RUN했을 때, Error creating bean with name 'entityManagerFactory' defined in class path resource 오류 발생

해결법

Id를 어노테이션 했을 때, import 부분에서 발생한 문제.
정확히는 Entity Id 참조가 잘못돼서 발생하는 오류.

원래

import org.springframework.data.annotation.Id;

수정 후

import javax.persistence.Id;
profile
개발자로 거듭나기!

0개의 댓글