運行我的程序時出現錯誤。錯誤是:org.hibernate.HibernateException:未找到JDBC驅動程序類:com.mysql.jdbc.Driver。 驅動程序在那裏......我不確定它是什麼造成這種情況。有什麼建議麼?休眠問題
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/registrar</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">root</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<mapping resource="com/ths/entity/Course.hbm.xml"/>
<mapping resource="com/ths/entity/Student.hbm.xml"/>
<mapping resource="com/ths/entity/Enrollment.hbm.xml"/>
</session-factory>
</hibernate-configuration>
發佈您的Hibernate配置。你有沒有在類路徑中引用驅動程序?我們需要更多信息來幫助你。 – 2011-01-28 17:12:04