我下载了 Hibernate 4.1.2 并使用 Oracle Database 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");
它工作正常。