我正在尝试使用Hibernate3.6.10和Netbeans7.4连接到MySQL数据库,但是当我尝试创建一个新的“Hibernate映射向导”时,我会回复以下错误消息:

Unable to connect: Cannot establish a connection jdbc:mysql://localhost:3306/mydbname using apache.org.derby.jdbc.ClientDriver(Unable to find a suitable driver)

这是我的“hibernate.cfg.xml”文件:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
  <session-factory>
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
    <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/database</property>
    <property name="hibernate.connection.username">username</property>
    <property name="hibernate.connection.password">password</property>
  </session-factory>
</hibernate-configuration>

我在这里发现了另一个类似的问题:Hibernate - Cannot connect to DB但我仍然不明白出了什么问题。
谨致问候。
安德莉亚

最佳答案

我从未使用过Hibernate映射向导,但据我所知,这对于创建扩展名为.hbm.xml的Hibernate映射文件非常有用:请参阅this link作为参考。
因此结果是一个.hbm.xml文件,它是类到表的映射。
关键是在hibernate.cfg.xml中没有显式引用此.hbm.xml文件。
尝试添加:
<mapping resource="<your_generated_file>.hbm.xml"/>
并确保在使用Hibernate Mapping Wizard工具时提供所需的所有数据。
希望这个有用!
再见!

10-06 13:52