[PersistenceUnit: default] Unable to build Hibernate SessionFactory; nested exception is org.hibernate.MappingException: Could not get constructor for org.hibernate.persister.entity.SingleTableEntityPersister
개발이야기 2019. 4. 23. 22:08[PersistenceUnit: default] Unable to build Hibernate SessionFactory; nested exception is org.hibernate.MappingException: Could not get constructor for org.hibernate.persister.entity.SingleTableEntityPersister
JDK 버전을 11로 변경하고 스프링부트 프로젝트를 실행한경우 위와 같은 에러가 발생하였다.
1 2 3 4 5 6 | <!-- https://mvnrepository.com/artifact/org.javassist/javassist --> <dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.23.1-GA</version> </dependency> | cs |
해당라이브러리를 추가하고 다시 실행하면 정상적으로 잘 실행된다.