gpt4 book ai didi

java - hibernate - 无法连接到数据库

转载 作者:行者123 更新时间:2023-11-29 09:04:50 26 4
gpt4 key购买 nike

我尝试使用 mysql,因此包括 mysql.jdbc,这些是我的 hibernate 设置。

<?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/TekirMobile</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password">fenderpass</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.current_session_context_class">thread</property>
<property name="hibernate.query.factory_class">org.hibernate.hql.classic.ClassicQueryTranslatorFactory</property>
</session-factory>
</hibernate-configuration>

但是当我尝试连接数据库时,出现了这个错误:

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

我什至不使用 derby 为什么会出现此错误?

最佳答案

您没有在任何地方指定连接驱动程序。它告诉您它正在尝试使用 apache.org.derby.jdbc.ClientDriver 进行连接。

指定MySQL驱动,方法如下:

<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>

关于java - hibernate - 无法连接到数据库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15600101/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com