Hibernate:无法加载类

时间:2015-03-16 21:08:08

标签: java hibernate

Caused by: org.hibernate.boot.registry.classloading.spi.ClassLoadingException: Unable to load class [com.mysql.jdbc.Driver]

http://www.tutorialspoint.com/hibernate/hibernate_quick_guide.htm

我正在关注hibernate指南,我发现此错误有人知道为什么?

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

您需要从here获取mysql连接器jar并将其添加到类路径中。也许是您的/lib文件夹

如果您使用的是maven,请尝试包含

<dependency>
    <groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>5.1.6</version>
</dependency>

在你的pom.xml中