I've been having issues loading up a second hibernate.cfg.xml type of file. I've already checked the forums (
http://forum.hibernate.org/viewtopic.ph ... 25f980b6c2), and double checked my work, but the mappings in the second file aren't getting loaded or recognized.
During initialization the following line of code runs fine, and all mappings it are good -
sessionFactory = new Configuration().configure("hibernate.cfg.xml").buildSessionFactory();
Also during intialization the following line of code is run, but no mappings in it are recognized -
sessionFactory = new Configuration().configure("/rshHibernate.cfg.xml").buildSessionFactory();
Is this even valid for me to do? If so, what can I do to get this to work?