线程" main"中的例外情况org.hibernate.HibernateException:无法解析

时间:2017-04-26 07:36:29

标签: java hibernate

我是hibernate的新手,并尝试运行第一个应用程序,但收到此错误:


                   " - // Hibernate / 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>  

1 个答案:

答案 0 :(得分:1)

看起来你的hibernate.cfg.xml中有一些无效的xml,因为它无法解析。

尝试在此处发布文件内容,以便我们查看。