private HibernateSessionStrategy() {
try {
// uses 'hibernate.cfg.xml'
sessionFactory = new Configuration().configure().buildSessionFactory();
} catch (HibernateException e) {
throw new PersistenceException("Caught HibernateException instantiating SessionFactory", e);
}
}