[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



해당라이브러리를 추가하고 다시 실행하면 정상적으로 잘 실행된다. 




출처 : https://stackoverflow.com/questions/52913597/springboot-org-hibernate-mappingexception-could-not-get-constructor-for-org-hi

블로그 이미지

클라인STR

,