gpt4 book ai didi

java - Hibernate 无法确定方言

转载 作者:行者123 更新时间:2023-11-30 02:42:10 25 4
gpt4 key购买 nike

我正在使用 hibernate 4.3.x 连接到 oracle 数据库。

但是在创建映射文件时它会抛出

"Unable to determine Dialect to use [ name = Oracle , majorVersion = 12 ]..."

这应该是 hiberante 3.x 中的问题(根据 google 的说法)

我该如何解决这个问题?谢谢

//编辑

配置属性:

<?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.connection.driver_class">oracle.jdbc.OracleDriver</property>
<property name="hibernate.connection.url">jdbc:oracle:...</property>
<property name="hibernate.connection.username">name</property>
<property name="hibernate.connection.password">Passwd</property>
<mapping class="Nemocnica" package="Model"/>
</session-factory>
</hibernate-configuration>

最佳答案

hibernate 检测 Oracle 12 方言似乎存在问题。

用途:

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

Oracle 10 方言也应该适用于 Oracle 12。

关于java - Hibernate 无法确定方言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41323894/

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