解決集成jpa時沒法建立entityManagerFactory的問題

最近將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

  1. 實體類的屬性對象沒有設置setter或者getter。 bash

    http://stackoverflow.com/questions/18042247/could-not-get-constructor-for-org-hibernate-persister-entity-singletableentitype app

  2. 沒有導入javassist的jar文件 (javassist-3.15.0-GA.jar什麼的) ide

    http://blog.csdn.net/xiaochangwei789/article/details/7712725 ui

  3. 實體類中的屬性對象名和映射文件的property name不一致。

    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

相關文章
相關標籤/搜索