最近將IDEA 2018.1版本更新到了2018.2版本,更新好後跑了一下以前的項目,結果就報錯了,這個項目集成了spring data jpa。因爲該錯誤有多種緣由致使,在解決該錯誤的時候也花了一些時間,因此特別記錄一下。關鍵的報錯信息以下:java
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'entityManagerFactory' defined in class path resource [org/zero/xunwuproject/config/JpaConfig.class]: Invocation of init method failed; nested exception is javax.persistence.PersistenceException: [PersistenceUnit: default] Unable to build Hibernate SessionFactory; nested exception is org.hibernate.MappingException: Could not get constructor for org.hibernate.persister.entity.SingleTableEntityPersister
這個錯誤有多種緣由致使,在網上查了一下, 大概有如下幾種緣由: spring
實體類的屬性對象沒有設置setter或者getter。 bash
沒有導入javassist的jar文件 (javassist-3.15.0-GA.jar什麼的) ide
http://blog.csdn.net/xiaochangwei789/article/details/7712725 ui
https://blog.csdn.net/liuzhengyang1/article/details/23127629.net
而我這裏是第二個緣由,缺乏javassist的jar包,因而在pom文件中引入:hibernate
<dependency> <groupId>org.javassist</groupId> <artifactId>javassist</artifactId> <version>3.23.1-GA</version> </dependency>
引入了這個jar包後,啓動就正常了。code