gpt4 book ai didi

java - hibernate 和数据插入数据库失败

转载 作者:行者123 更新时间:2023-11-30 06:29:30 29 4
gpt4 key购买 nike

<hibernate-configuration>
<session-factory> <property name="hibernate.connection.driver_class">

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

jdbc:mysql://localhost/products</property>
<property name="hibernate.connection.username">root</property>
<property name="hibernate.connection.password"></property>
<property name="hibernate.connection.pool_size">10</property>
<property name="show_sql">true</property>
<property name="dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.hbm2ddl.auto">update</property>
<!-- Mapping files -->
<mapping resource="prod.hbm.xml"/>
</session-factory>
</hibernate-configuration>

我正在使用上面的 XML 作为 hibernate 配置文件,将一些数据插入到名为“Products”的数据库中。 但它显示编译错误:Connection cannot be null when 'hibernate.dialect' not set
我不知道为什么/如何解决。你们中的一些人能给我一些继续前进的想法吗?我很感激。谢谢。

[更新]

我想我应该包括我创建和设置我的简单项目的步骤,我想这可能是原因

我已经在 mysql 中有数据库和表;然后我创建了一个空的 java 项目,我添加了源文件(java 扩展),然后我添加了 2 个 xml 文件(hibernate.cfg.xml 和 prod.hbm.xml)。然后我只是编译,希望我能运行。

这是我在尝试将我的应用程序作为 Java 应用程序运行后从命令提示符处得到的消息

Jul 13, 2012 12:32:55 PM org.hibernate.annotations.common.Version <clinit>
INFO: HCANN000001: Hibernate Commons Annotations {4.0.1.Final}
Jul 13, 2012 12:32:55 PM org.hibernate.Version logVersion
INFO: HHH000412: Hibernate Core {4.1.2.Final}
Jul 13, 2012 12:32:55 PM org.hibernate.cfg.Environment <clinit>
INFO: HHH000206: hibernate.properties not found
Jul 13, 2012 12:32:55 PM org.hibernate.cfg.Environment buildBytecodeProvider
INFO: HHH000021: Bytecode provider name : javassist
Jul 13, 2012 12:32:56 PM org.hibernate.service.jdbc.connections.internal.ConnectionProviderInitiator initiateService
WARN: HHH000181: No appropriate connection provider encountered, assuming application will be supplying connections
Connection cannot be null when 'hibernate.dialect' not set

最佳答案

应该是

<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>

关于java - hibernate 和数据插入数据库失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11464258/

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