aspose file tools
The moose likes Object Relational Mapping and the fly likes Problem in building hibernate SessionFactory Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Databases » Object Relational Mapping
Reply Bookmark "Problem in building hibernate SessionFactory" Watch "Problem in building hibernate SessionFactory" New topic
Author

Problem in building hibernate SessionFactory

Yewint Ko
Ranch Hand

Joined: Aug 02, 2009
Posts: 90
Hi all , I have some problems with hibernate configuration..... somebody help me please...
this is my dir structure


I build the SessionFactory in the servlet (TestHibernateServlet.class) as follow



I put the Hibenate jar file in lib correctly but I got this exception

java.lang.NoClassDefFoundError: org/dom4j/DocumentException (TestHibernateServlet.java:35)

Please help me out .I am new to hibernate, I don't know what to do .

Vasily Kukhta
Greenhorn

Joined: Jan 17, 2009
Posts: 23
Hello! Does your application contain dom4j jar file? If not, you should add it.
Usually, NoClassDefFoundError occures if some required jar is not present in the application.
Yewint Ko
Ranch Hand

Joined: Aug 02, 2009
Posts: 90
Oh yes,I see. I added some libs and solved above problem. Now I have following libraries in my lib for hibernate

hibernate3.jar
antlr-2.7.6.jar
commons-collations-3.1.jar
dom4j-1.6.1.jar
javassist-3.9.0.GA.jar
jta-1.1.jar
slf4j-api1.5.8.jar

But when I run the app ,I see another error


and then I run again I got another error


Every first times after starting the server is first error and every second times is the last error. Why are the two errors different?
What will I do now? Do I need more libraries?


xsunil kumar
Ranch Hand

Joined: Dec 14, 2009
Posts: 125
hibernate.cfg.xml and other hbm file you have kept in WEB-INF directory. You should need to place inside /WEB-INF/classes.

Try this one.
Yewint Ko
Ranch Hand

Joined: Aug 02, 2009
Posts: 90
Yes I did. But I can't solve.
Actually, I think the problem is not with hibernate.cfg.xml file and .hbm.xml files. It might be because of lib files.
As for the first error, it said " java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder ".
When I take a look inside slf4j.jar, I don't see any such package "org/slf4j/impl/....". Something wrong?
This is how I write in my servlet



 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Problem in building hibernate SessionFactory
 
Similar Threads
createSQLQuery in Spring
Problem selecting data from the database: Hibernate
"java.lang.String cannot be cast" Error in Hibernate
Problem using Annotations in hibernate
hibernate