1.路徑 path因素mysql
Inherit project compile output path :繼承項目輸出路徑sql
Use module compile output path :使用模塊編譯輸出路徑。若是是選擇繼承項目輸出路徑是可能會致使沒法建立entity manager Factory 的因素之一!數據庫
2.註解關係錯誤可能也致使沒法建立url
關係與本身數據庫中的表不對應,也多是緣由之一。你們能夠注意一下hibernate
3.數據庫的驅動與hibernate的配置方言沒有加載成功,也多是致使沒法建立的因素之一blog
<property name="hibernate.dialect" value="org.hibernate.dialect.MySQLDialect" />
<property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver"></property> <property name="hibernate.connection.url" value="jdbc:mysql:///jpa?characterEncoding=UTF-8"></property> <property name="hibernate.connection.username" value="root"></property> <property name="hibernate.connection.password" value="root"></property> ------------------------------------------------------------------------------------------------------------- 以上就是可能會致使entity manager Factory 沒法建立的因素!!!!