0

私は STS を使用し、MVC テンプレート プロジェクトを作成しました。hibernate を使用したいのですが、hibernate.cfg.xml をどこに置くべきかわかりません。デフォルトのプロジェクトでは、それを src/ フォルダーに入れるだけです。

    static {

        try {

            // Create the SessionFactory from hibernate.cfg.xml
            //AnnotationConfiguration
            sessionFactory = new Configuration().configure().buildSessionFactory();

        } catch (Throwable ex) {
            // Make sure you log the exception, as it might be swallowed
            System.err.println("Initial SessionFactory creation failed." + ex);
            throw new ExceptionInInitializerError(ex);
        }
    }

    public static SessionFactory getSessionFactory() {

        return sessionFactory;

    }
}

そのように Hibernate.cfg.xml へのパスを厳密に追加できることを私は知っています:

sessionFactory = new Configuration().configure("XXX").buildSessionFactory();

ここで、XXX は hibernate.cfg.xml へのパスです。「/hibernate.cfg.xml」のようなパスを使用する場合、hibernate.cfg.xml はどこに配置すればよいですか? ありがとう!

4

1 に答える 1

0

デフォルト パッケージのソース ディレクトリ (名前は何でも) に入れる必要があります。これにより、コンパイル時に Eclipse がそれをターゲット フォルダーにコピーし、アプリケーションの実行時にクラスパスのルートで使用できるようにします。

于 2012-12-09T13:49:38.643 に答える