在使用hibernate时,报了 Could not parse configuration: /hibernate.cfg.xml
这很有可能是hibernate.cfg.xml文件出错
此时可以先用浏览器打开 hibernate.cfg.xml文件 看看能不能正常显示,如果不能,则说明配置文件编写有问题(比如DTD的url错误,标签错误等),改正相应的错误后就不报异常了
问题现象:加载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的hibernate.cfg.xml文件 -->
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
上面红色这一句根据hibernate版本不同会有所不同,有可能需要改成
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">(低版本hibernate),当然,对应的hbm.xml文件头部也要修改成一样的才行。
注意:hibernate.cfg.xml是configuration,*.hbm.xml是mapping
并且二者的地址前半部分一定要一致,要么都是http://hibernate.sourceforge.net/ 要么都是http://hibernate.org/dtd/注:使用http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd 和
http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd 不管有网无网都可以!