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指南,我发现此错误有人知道为什么?
感谢您的帮助。
答案 0 :(得分:2)
您需要从here获取mysql连接器jar并将其添加到类路径中。也许是您的/lib
文件夹
如果您使用的是maven,请尝试包含
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.6</version>
</dependency>
在你的pom.xml中