这种情况该怎么解决呢

来源:1-7 hibernate配置文档

以太啊

2016-12-28 10:18

org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml


写回答 关注

1回答

  • 淡泊明志2
    2016-12-28 12:58:09

    问题现象:加载Hibernate时出现异常,可以看到异常信息:

          org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml

          Caused by: org.dom4j.DocumentException: Connection timed out: connect Nested exception: Connection timed out: connect

     

            原因:hibernate.cfg.xml中引用了错误的DTD文件路径“http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd”。

     

            解决方法:替换为正确的DTD路径:“http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd”。


Hibernate初探之单表映射

Java持久化框架Hibernate入门教程,掌握Hibernate基本概念

74810 学习 · 793 问题

查看课程

相似问题