Multiple choice technology web technology How to create SessionFactory ? configuration.buildSessionFactory(); configuration.createSessionFactory(); configuration.createNewSessionFactory(); none of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation To create a SessionFactory in Hibernate, you call the buildSessionFactory() method on a Configuration object. The typical pattern is: SessionFactory sessionFactory = new Configuration().configure().buildSessionFactory();