| Author |
Hibernate Maping error
|
trupti nigam
Ranch Hand
Joined: Jun 21, 2001
Posts: 602
|
|
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
|
 |
trupti nigam
Ranch Hand
Joined: Jun 21, 2001
Posts: 602
|
|
Any help ranchers..
thanks
Trupti
|
 |
Paul Sturrock
Bartender
Joined: Apr 14, 2004
Posts: 10336
|
|
|
Is Event.hbm.xml in your classpath?
|
JavaRanch FAQ HowToAskQuestionsOnJavaRanch
|
 |
trupti nigam
Ranch Hand
Joined: Jun 21, 2001
Posts: 602
|
|
Thanks a lot.
The issue is resolved.
You are right, the xml mapping file was not in calsspath due to which I was getting the error message.
I could run the example.
thanks
Trupti
|
 |
 |
|
|
subject: Hibernate Maping error
|
|
|