Hibernate 项目启动加载很慢,不联网时启动不了,还报异常Caused by: org.dom4j.DocumentException: www.hibernate.org Nested exc

异常信息如下:

Hibernate 项目启动加载很慢,不联网时启动不了,还报异常Caused by: org.dom4j.DocumentException: www.hibernate.org Nested exc_第1张图片

Hibernate 项目启动加载很慢,不联网时启动不了,还报异常Caused by: org.dom4j.DocumentException: www.hibernate.org Nested exc_第2张图片

看到我那个映射文件没有PProduct.hbm.xml,里面的头部结构是这样的:

   
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd"

 
  

  改成:

 
  
xml version='1.0' encoding='UTF-8'?>
DOCTYPE hibernate-configuration PUBLIC
          "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
          "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd"


就搞定了,而且项目还跑得很快,没有那么慢了,一开始我还以为是hibernate要扫描表的原因或者数据源初始化等其他原因,等我把所有表映射文件都改成上面的头结构就没出息这种问题了。




你可能感兴趣的:(hibernate)