Hibernate inside scr/test/java/.. packages
Answered
Hello, I am using InteliJ idea ultimate, with hibernate integrated, I am running selenium tests using maven, so all my code is under src/test/java/../ package, however when I put my hibernate.cfg.xml inside this package (not src/main/java/../) intelijs hibernate tool behaves weird, 
Normally, under hibernate.cfg,xml there should be drop down list with all my entities, but its not displaying them there, unless I move it all under src/main/java packages, is there anything I can do?
Please sign in to leave a comment.
Works for me
Make sure hibernate configuration file is set in Hibernate facet for the module and that the mapping is correctly configured in file (that the mapped classes can be found).
If issue remains, provide a sample project.