我試圖用NetBeans 7.4連接到使用Hibernate 3.6.10的MySQL數據庫,但是當我嘗試創建新的「Hibernate映射向導」時,我回復此錯誤消息:Hibernate - MySQL - 連接數據庫
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但我還是不明白什麼是錯的。
此致敬禮。
安德烈
類路徑中的com.mysql.jdbc.Driver'類是什麼? –
你在classpath中是否也有hibernate config.prop文件? – kosa
嗨羅賓和Nambari:我不得不把我的mysql驅動程序的「路徑」庫也config.prop路徑CLASSPATH變量,但我沒有這樣做。謝謝。 – user2928795