I am very new to hibernate and going through some exercise tutorials.
I am following each step in the tutorials and I tried to run my first hibernate app but I get below error.
[
java] Initial SessionFactory creation failed.org.hibernate.InvalidMappingE
xception: Could not parse mapping document from resource events/Event.hbm.xml
[java] Exception in
thread "main" java.lang.ExceptionInInitializerError
[java] at util.HibernateUtil.<clinit>(Unknown Source)
[java] at events.EventManager.createAndStoreEvent(Unknown Source)
[java] at events.EventManager.main(Unknown Source)
[java] Caused by: org.hibernate.InvalidMappingException: Could not parse ma
pping document from resource events/Event.hbm.xml
[java] at org.hibernate.cfg.Configuration.addResource(Configuration.jav
a:575)
My directory structure is as follows:
hibernateTutorial
+ src
+events
event.java
eventManager.java
event.hbm.xml
+util
HibernateUtil.java
Hibernate.cfg.xml
The event.hbm.xml looks like below:
I am using hsqldb.
EventManager class looks like below:
can someone plese let me know what is wrong with the mapping file.
thanks
Trupti