If you are using hibernate version 4.x.x then you might have seen that when we create a SessionFactory object we get a warning saying The method buildSessionFactory() from the type Configuration is deprecated.
Code Snippet HibernateSessionFactory factory = new Configuration().
configure().buildSessionFactory();
Solution:
Replace the SessionFactory code with the below lines:
Configuration conf = new Configuration().configure("hibernate.cfg.xml");
StandardServiceRegistryBuilder builder = new
StandardServiceRegistryBuilder().applySettings(conf.getProperties());
SessionFactory factory = conf.buildSessionFactory(builder.build());

This is not an AI-generated article but is demonstrated by a human.
Please support independent contributors like Code2care by donating a coffee.
Buy me a coffee!

Comments & Discussion
Facing issues? Have questions? Post them here! We're happy to help!