[Hibernate] The method buildSessionFactory() from the type Configuration is deprecated


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 Hibernate
SessionFactory 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());
The method buildSessionFactory from the type Configuration is deprecated
The method buildSessionFactory from the type Configuration is deprecated


















Copyright © Code2care 2024 | Privacy Policy | About Us | Contact Us | Sitemap