I am trying to connect to DB in a servlet using Hibernate.I have read that we can use either hibernate.cfg.xml or hibernate.properties file for configuration of session.For me it worked with xml. Now when I am trying to use properties instead of xml its not working. It is saying that hibernate.cfg.xml not found.But nowhere I mentioned to use xml file and infact I have deleted that xml file.
Please Help me. And Please correct me if I am doing anything wrong.
An alternative approach to configuration is to specify a full configuration in a file named hibernate. cfg. xml . This file can be used as a replacement for the hibernate.
it's not mandatory to use hibernate. cfg. xml.
If both hibernate. properties and hibernate. cfg. xml files are present in the classpath then hibernate.
This code will call hibernate.cfg.xml by default:
Configuration configuration = new Configuration().configure();
And this code will call hibernate.properties by default:
Configuration configuration = new Configuration();
Hope it helps.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With