Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to create a my first hibernate application in these application by using hibernate tool i am trying to create cfg.xml file but in these file Driver class is "org.gjt.mm.mysql.Driver" itis coming default for MYSQL 5 but while doing hibernate code generation configuration it's throwing the exception that driver ClassNotFound exception

share|improve this question
Can you post your config file? – nwinkler Feb 29 '12 at 11:05

2 Answers

up vote 0 down vote accepted

See this post.

What is the jdbc driver "org.gjt.mm.mysql.Driver" for?

You need to download correct mysql connector and put it on your classpath as the one you are using (org-gjt-mm-mysql-driver) is very old

And change your hibernate configuration to use it.

share|improve this answer
I am now trying to use these driver com.mysql.jdbc.Driver but now i got error as in hibernate code generation configuration their is some problem in path of output directory – Pranali Feb 29 '12 at 11:21

Make sure that the jar file containing the driver is in your classpath when you run the hibernate tool.

share|improve this answer
my jar file is present in Referenced Library – Pranali Feb 29 '12 at 11:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.