6

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">

私はこの例外を受け取ります:

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")

これはHibernate4.1のバグですか?

4

2 に答える 2

1

...価値があるので、IntelliJにスタブファイルを作成させて、それを開始するだけでした(hibernate 4.1の場合):

<!DOCTYPE hibernate-configuration PUBLIC
  "-//Hibernate/Hibernate Configuration DTD//EN"
  "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
于 2013-02-20T12:28:47.497 に答える