异常[PersistenceUnit: default] Unable to build Hibernate SessionFactory

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/springframework/boot/autoconfigure/orm/jpa/HibernateJpaAutoConfiguration.class]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: default] Unable to build Hibernate SessionFactory。

在新公司,使用spring-data-jpa。

出现这个异常,这是由于你的entity类与数据库不匹配造成的。

必须将entity与数据库的映射处理好才能够正常启动。

所以出现这个问题,感觉去看看你的数据库跟实体类之间的映射关系是不是出了问题吧

原文地址:https://www.cnblogs.com/lilinzhiyu/p/8310247.html