org.hibernate.HibernateException:无法解析配置:hibernate.cfg.xml [英] org.hibernate.HibernateException: Could not parse configuration: hibernate.cfg.xml

查看:152
本文介绍了org.hibernate.HibernateException:无法解析配置:hibernate.cfg.xml的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



please help me in resolving this error.

org.hibernate.HibernateException: Could not parse configuration: hibernate.cfg.xml
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1494)
at org.hibernate.cfg.Configuration.configure(Configuration.java:1428)
at org.jbpm.db.hibernate.HibernateHelper.createConfiguration   (HibernateHelper.java:89)
at org.jbpm.persistence.db.DbPersistenceServiceFactory.getConfiguration  (DbPersistenceServiceFactory.java:75)
at org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServiceFactory.java:104)
at org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:93)
at org.jbpm.persistence.jta.JtaDbPersistenceService.getTransactionManager(JtaDbPersistenceService.java:100)
at org.jbpm.persistence.jta.JtaDbPersistenceService.getTransactionStatus(JtaDbPersistenceService.java:88)
at org.jbpm.persistence.jta.JtaDbPersistenceService.<init>(JtaDbPersistenceService.java:50)
at org.jbpm.persistence.jta.JtaDbPersistenceServiceFactory.openService(JtaDbPersistenceServiceFactory.java:61)
at org.jbpm.svc.Services.getService(Services.java:160)
at org.jbpm.svc.Services.getPersistenceService(Services.java:197)
at org.jbpm.JbpmContext.getPersistenceService(JbpmContext.java:695)
at org.jbpm.JbpmContext.getJobSession(JbpmContext.java:639)
at org.jbpm.job.executor.LockMonitorThread.unlockOverdueJobs(LockMonitorThread.java:64)
at org.jbpm.job.executor.LockMonitorThread.run(LockMonitorThread.java:43)
Caused by: org.dom4j.DocumentException: Connection reset Nested exception: Connection reset
at org.dom4j.io.SAXReader.read(SAXReader.java:484)
at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1484)
... 15 more

我对hibernate并不了解,并且很难理解错误是什么。用于hibernate的jar文件如下:

I am new to hibernate and having difficulty in understanding what the error is. The jar files used for hibernate are as

hibernate-annotations.jar
hibernate-jpa-2.0-api-1.0.1.Final.jar
hibernate3.jar

my hibernate .cfg.xml 文件为

my hibernate.cfg.xml file is as

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration SYSTEM
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
 <hibernate-configuration>
    <session-factory>   


        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
           <property name="connection.url">jdbc:mysql://localhost:3306/datacenter</property>
        <property name="connection.username">root</property>
         <property name="connection.password">admin</property>  
       <!-- <property     name="hibernate.connection.provider_class">org.hibernate.connection.C3P0ConnectionProvider</property> 

   -->

        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>      
      <property name="current_session_context_class">thread</property>
       <property name="show_MySql">TRUE</property>
       <property name="format_sql">TRUE</property>
       <!-- <property name="jboss.as.jpa.providerModule">hibernate3-  bundled</property> -->


      <property name="hibernate.hbm2ddl.auto">update</property>
             <property name="hibernate.cache.use_second_level_cache">true</property>
    <!--  <property name="hibernate.query.factory_class">org.hibernate.hql.internal.classic.ClassicQueryTransla  torFactory</property> -->

       <!-- List of annotated classes-->
    <!-- Associations -->
            <!-- One to one -->
    <!-- <mapping class="Emp_Timecard" />
    <mapping class="maindoor" /> -->
    <mapping class="model.serverroom" />
    <mapping class="model.resourcelist" />
    <mapping class="model.timesheet" />
    <mapping class="model.maindoor" />
    <!-- <mapping class="timesheet" />
    <mapping class="Resource_list"/> -->


   </session-factory>
  </hibernate-configuration>


推荐答案

运行hibernate应用程序脱机使用'hibernate-core jar '文件它会工作..
不需要改变你的Hibernate配置文件.Avvappa,BEL。

to run hibernate application offline use 'hibernate-core jar' file it will work.. no need to change your Hibernate configuration file .Avvappa,BEL.

这篇关于org.hibernate.HibernateException:无法解析配置:hibernate.cfg.xml的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆