我是休眠编程的新手。
因为我正在使用 hibernate3 并成功地运行项目。
但是正如我注意到的那样,只要没有互联网连接并且低于异常,我就无法运行项目,
org.hibernate.HibernateException: Could not parse configuration: /hibernate.cfg.xml
经过搜索,我得到了更改 DTD 的建议,但仍然没有运气。
下面是我的 hibernate.cfg.xml 文件,
<!DOCTYPE hibernate-configuration SYSTEM
"http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect"> org.hibernate.dialect.MySQLDialect
</property>
<property name="hibernate.connection.driver_class"> com.mysql.jdbc.Driver </property>
<property name="hibernate.connection.url"> jdbc:mysql://LOCALHOST/test
</property>
<property name="hibernate.connection.username"> root </property>
<property name="hibernate.connection.password"> vijay@123 </property>
<property name="show_sql"> true </property>
<property name="hbm2ddl.auto">update</property>
<property name="hibernate.connection.zeroDateTimeBehavior">convertToNull</property>
<!-- List of XML mapping files -->
<mapping resource="model/Customer.hbm.xml" />
</session-factory>
</hibernate-configuration>
下面是依赖,
mysql-connector-java-5.1.41-bin.jar
antlr-2.7.6.jar
asm-attrs.jar
asm.jar
c3p0-0.9.1.jar
cglib-2.1.3.jar
commons-collections-2.1.1.jar
commons-logging-1.0.4.jar
dom4j-1.6.1.jar
ehcache-1.2.3.jar
ejb3-persistence.jar
hibernate-annotations.jar
hibernate-commons-annotations.jar
hibernate-validator.jar
hibernate3.jar
jdbc2_0-stdext.jar
jta.jar
log4j-1.2.11.jar
xerces-2.6.2.jar
jstl-1.2.jar
我知道它的已知问题,但我无法解决这个问题。
请指教。
问候,维杰