gpt4 book ai didi

java - Hibernate 不想加载 Oracle 驱动程序

转载 作者:行者123 更新时间:2023-11-30 05:53:41 26 4
gpt4 key购买 nike

我下载了 Hibernate 4.1.2 并使用 Oracle 数据库 10g 第 2 版。我使用的 JDBC 驱动程序是 ojdbc14.jar

我将 HibernateUtil 类设置为:

public class HibernateUtil {
private static final SessionFactory sessionFactory = buildSessionFactory();

private static SessionFactory buildSessionFactory() {
// Create the SessionFactory from hibernate.cfg.xml
try{
Configuration configuration = new Configuration();
configuration.configure();
ServiceRegistry serviceRegistry = new ServiceRegistryBuilder().applySettings(configuration.getProperties()).buildServiceRegistry();
return configuration.buildSessionFactory(serviceRegistry);
}catch(HibernateException ex){
ex.printStackTrace();
throw ex;
}
}

public static SessionFactory getSessionFactory() {
return sessionFactory;
}
}

hibernate.properties 我有:

hibernate.dialect org.hibernate.dialect.OracleDialect
hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
hibernate.connection.username HR
hibernate.connection.password HR
hibernate.connection.url jdbc:oracle:thin:@localhost:1521/xe

但是 Hibernate 不想加载驱动程序。它抛出一个异常,提示“找不到合适的驱动程序”。

我尝试使用 Class.forName("oracle.jdbc.driver.OracleDriver"); 加载驱动程序,它工作正常。

最佳答案

问题在于使用了错误的 JDBC Oracle 驱动程序。当我尝试使用 ojdbc6.jar 时,一切正常。

关于java - Hibernate 不想加载 Oracle 驱动程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10282577/

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