どのようにプロパティをhibernate.cfg.xml
からjavaプログラムにStringとしてロードできますか?プロパティhibernate.cfg.xml
私は、このプロパティでIDataBaseTester
を作成したり、私にあなたがConfiguration
を使用するだけにHibernate 4でAnnotationConfiguration
を使用することはできませんIDataBaseTester
HibernateUtil
hibernate.cfg.xml
からを作成するためのセッション
public class HibernateUtil {
private static final SessionFactory sessionFactory = buildSessionFactory();
private static SessionFactory buildSessionFactory() {
try {
// Create the SessionFactory from hibernate.cfg.xml
return new AnnotationConfiguration().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;
}
public static void shutdown() {
// Close caches and connection pools
getSessionFactory().close();
}
}
使用しようとすることができますか? –
Hibernate 4. * + 私はプログラムにプロパティを書き込む別の方法がありますか? – Ridov