gpt4 book ai didi

hibernate - 用于 hibernate 4 的功能 hibernate.cfg.xml

转载 作者:行者123 更新时间:2023-12-04 15:35:30 24 4
gpt4 key购买 nike

有人有 hibernate 4 的功能 cfg 文件示例吗?
我可以在网上找到的所有引用都低于 v4,这不起作用。我尝试在此处粘贴我的文件内容,但此站点删除了 hibernate-configuration 标记。

所以这是结果:

<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://www.hibernate.org/dtd/">

<hibernate-configuration xmlns="http://www.hibernate.org/xsd/hibernate-configuration">

<session-factory>

<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<!-- Assume test is the database name -->
<property name="hibernate.connection.url">jdbc:mysql://localhost/foampile</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password"></property>
<!-- List of XML mapping files -->

<mapping resource="SiteRecord.hbm.xml"/>

</session-factory>

</hibernate-configuration>

一旦我改为
<hibernate-configuration xmlns="http://www.hibernate.org/xsd/hibernate-configuration"
xsi:schemaLocation="http://www.hibernate.org/xsd/hibernate-configuration hibernate-configuration-4.0.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">

我得到这个异常(exception):
Caused by: org.xml.sax.SAXParseException; lineNumber: 9; columnNumber: 63; Attribute "xmlns" must be declared for element type "hibernate-configuration".

但是指定了 xmlns (xmlns="http://www.hibernate.org/xsd/hibernate-configuration")

这是 Hibernate 4.1 中的错误吗???

最佳答案

我遇到了同样的问题,我可以通过从 hibernate-configuration 中删除所有属性来让它工作,尽管文档和错误消息是这样说的:) 所以最后,我的 DOCTYPE 有这个:

<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">

然后我只有:
<hibernate-configuration>
....
</hibernate-configuration>

这对我有用。

关于hibernate - 用于 hibernate 4 的功能 hibernate.cfg.xml,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12206721/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com