1

こんにちは、休止状態のマッピングから例外が発生します:最初のSessionFactoryの作成に失敗しました.org.hibernate.MappingNotFoundException:リソース:bbstats / domain/User.hbm.xmlが見つかりませんスレッド"main"の例外java.lang.ExceptionInInitializerError

これが私のhibernate.cfg.xmlです:

<?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>
        <!-- Database connection settings -->
        <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
        <property name="connection.url">jdbc:mysql://sql10.lh.pl:3306/zamocno_bb</property>
        <property name="connection.username">root</property>
        <property name="connection.password"></property>

        <!-- JDBC connection pool (use the built-in) -->
        <property name="connection.pool_size">1</property>

        <!-- SQL dialect -->
        <property name="dialect">org.hibernate.dialect.MySQLDialect</property>

        <!-- Enable Hibernate's automatic session context management -->
        <property name="current_session_context_class">thread</property>

        <!-- Disable the second-level cache  -->
        <property name="cache.provider_class">org.hibernate.cache.NoCacheProvider</property>

        <!-- Echo all executed SQL to stdout -->
        <property name="show_sql">false</property>

        <property name="hbm2ddl.auto">validate</property>

        <mapping resource="bbstats/domain/User.hbm.xml"/>


    </session-factory>
</hibernate-configuration>

これが私のUser.hbm.xmlです:

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping package="bbstats.domain">

    <class name="bbstats.domain.Users" table="USERS">
        <id name="id" column="ID">
            <generator class="native"/>
        </id>
        <property name="title" column="nick"/>
    </class>

</hibernate-mapping>

そしてここUsers.class:

package bbstats.domain;

/**
 * Created with IntelliJ IDEA.
 * User: Rafał
 * Date: 25.03.13
 * Time: 13:33
 * To change this template use File | Settings | File Templates.
 */
public class Users
{
    private Long id;
    private String title;

    public Users() {}

    public Users(Long id, String title) {
        this.id = id;
        this.title = title;
    }

    public Long getId() {
        return id;
    }

    private void setId(Long id) {
        this.id = id;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }
}

およびHibernateUtil.class:

package bbstats.util;

import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;

public class HibernateUtil
{

    private static final SessionFactory sessionFactory = buildSessionFactory();

    private static SessionFactory buildSessionFactory() {
        try {
            return new Configuration()
                    .configure()
                    .buildSessionFactory();
        } catch (Throwable ex) {
            System.err.println("Initial SessionFactory creation failed." + ex);
            throw new ExceptionInInitializerError(ex);
        }
    }

    public static SessionFactory getSessionFactory() {
        return sessionFactory;
    }
}

カタログの構造: ここに画像の説明を入力してください

4

2 に答える 2

1

User.hbm.xmlに問題があります

ここ

<class name="bbstats.domain.Users" table="USERS">
        <id name="id" column="ID">
            <generator class="native"/>
        </id>
        <property name="title" column="nick"/>
    </class>

<hibernate-mapping package="bbstats.domain">この行にクラスのパッケージ名をすでに指定しているため、クラスの完全修飾名を削除してください

以下のコードでUser.hbm.xmlを更新します

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-mapping PUBLIC
        "-//Hibernate/Hibernate Mapping DTD 3.0//EN"
        "http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd">

<hibernate-mapping package="bbstats.domain">

    <class name="Users" table="USERS">
        <id name="id" column="ID">
            <generator class="native"/>
        </id>
        <property name="title" column="nick"/>
    </class>

</hibernate-mapping>

注: pojo 名はUsers.javaです。読みやすくするために、ドメインオブジェクトに従ってUser.hbm.xmlの名前をUsers.hbm.xmlに変更することをお勧めします。

于 2013-03-26T05:24:58.153 に答える
1

Eclipseでは、Javaビルドパスが* / .xmlを反映している必要があることを確認してください。プロジェクトを右クリック>プロパティ>Javaビルドパス>ソース>追加* / .xml(ビルドパスのソースフォルダー、**。xmlを含む)

于 2013-09-09T18:45:11.607 に答える