2017-04-26 130 views
0

即時通訊新的休眠,並試圖先運行應用程序,但得到這個錯誤:異常線程 「main」 org.hibernate.HibernateException:無法解析


「 - //休眠/ Hibernate配置DTD 3.0 // EN」
「http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd」>

<hibernate-configuration> 

    <session-factory> 
     <property name="hbm2ddl.auto">update</property> 
     <property name="dialect">org.hibernate.dialect.MySQLDialect</property> 
     <property name="connection.url">jdbc:mysql://localhost:3306/test</property> 
     <property name="connection.username">root</property> 
     <property name="connection.password">prashant</property> 
     <property name="connection.driver_class"> com.mysql.jdbc.Driver</property> 
    <mapping resource="employee.hbm.xml"/> 
    </session-factory> 

</hibernate-configuration> 
+0

將你的hibernate.cfg粘貼到問題中。 – ProgrammerBoy

+0

這是cfg文件 – prashant

回答

1

看起來你在你的hibernate.cfg.xml一些無效的XML,因爲它不能解析。

嘗試在此處發佈文件中的內容,以便我們可以查看它。

相關問題