Hibernate の使い方を Web で調べると、例えば以下のようなコードを見かけます。
private static SessionFactory sessionFactory;
private SessionFactory getSessionFactory() throws HibernateException {
sessionFactory = new Configuration()
.configure()
.buildSessionFactory();
return sessionFactory;
}
しかし、Hibernate で SessionFactory を取得するメソッド Configuration::buildSessionFactory() (引数なし)は、Hibernate 4.0 で非推奨になっています。 read more
Home