0

次のような休止状態の構成ファイルがあります

    en<?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-configuration>
    <session-factory>
        <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
        <property name="hibernate.connection.password">postgres</property>
        <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/mining</property>
        <property name="hibernate.connection.username">postgres</property>
        <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
        <property name="hibernate.current_session_context_class">thread</property>
        <mapping file="WEB-INF/mams-hibern.xml"></mapping>
    </session-factory>
</hibernate-configuration>

しかし、私は例外を取得します

org.hibernate.MappingNotFoundException: file: WEB-INF\mams-hibern.xml not found

cfg ファイルは次の場所にあります。

project>src>hiber.cfg.xml

そして、マッピングを含む mams-hibern.xml はフォルダーにあります

project>WebContent>WEB-INF>mams-hibern.xml

これの解決策は何ですか.誰でも私を助けてください

4

1 に答える 1

0

Eclipseのような ID を使用している場合は、hbm ファイル project>src>mams-hibern.xmlcfgファイルに入れます。

<mapping resource="mams-hibern.xml"/>
于 2013-09-07T12:21:41.033 に答える