Java/JPA with Error
[해결 방법] org.hibernate.DuplicateMappingException
HJ0216
2023. 5. 23. 00:41
🟦 기본 환경: IDE: IntelliJ, Language: Java
발생 Error
SpringBoot에서 다음 Source Code를 실행할 경우,
🚨다음과 같은 Error 발생
Invocation of init method failed;
nested exception is org.hibernate.DuplicateMappingException: The [jpabook.jpashop.Member] and [jpabook.jpashop.domain.Member] entities share the same JPA entity name: [Member] which is not allowed!
발생 원인
동일한 Entity 이름(Member) 존재
해결 방법
Entity 이름의 중복을 피하기 위해서 EntityName을 따로 부여