私は 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 はどこに配置すればよいですか? ありがとう!