Hi
I use Hibernate 3 with Tomcat 5.5. When calling a Servlet with the following Code
Code:
Configuration cfg = new Configuration();
cfg.addResource("com/ilogs/medea/data/Patient.hbm.xml");
SessionFactory session = cfg.buildSessionFactory();
the hbm.xml file is found without problems, but somehow Hibernate / Tomcat cannot find the property file.
org.hibernate.cfg.Environment - Hibernate 3.0.2
2005-05-09 12:05:57,753 [http-8001-Processor24] INFO org.hibernate.cfg.Environment - hibernate.properties not found.
I tried the standard hibernate.properties as well as the xml file. I placed them under WEB-INF/classes and WEB-INF as well both should be in the classpath but somehow the file cannot be found.
Any hints ??
TIA
John