🟦 기본 환경: 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을 따로 부여
'Java > JPA with Error' 카테고리의 다른 글
[해결 방법] java.sql.SQLIntegrityConstraintViolationException (0) | 2023.06.25 |
---|---|
[해결 방법] org.springframework.http.converter.HttpMessageNotWritableException (0) | 2023.06.18 |
[해결 방법] java.lang.StackOverflowError: null (0) | 2023.06.18 |
[해결 방법] org.hibernate.hql.internal.ast.QuerySyntaxException (0) | 2023.05.29 |
[해결 방법] javax.persistence.TransactionRequiredException (0) | 2023.05.21 |