Create SessionFactory in Hibernate 4
We can create SessionFactory in Hibernate 4 latest version, viz Hibernate 4.3.8 till now using the StandardServiceRegistryBuilder class. In prior version of hibernate we build the SessionFactory something like this
1 2 3 | SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory(); |
But the class org.hibernate.cfg.Configuration.buildSessionFactory() is deprecated in latest version…