我刚刚开始使用Hibernate,我一直在尝试用H2连接它。
我的hibernate.cfg.xml文件如下所示:
<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE hibernate-configuration PUBLIC
"-//Hibernate/Hibernate Configuration DTD//EN"
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="connection.url">org.h2.Driver</property>
<property name="connection.driver_class">jdbc:h2:mem:test</property>
<property name="connection.username">sa</property>
<property name="connection.password"/>
<!-- DB schema will be updated if needed -->
<!-- <property name="hbm2ddl.auto">update</property> -->
<!-- SQL dialect -->
<property name="dialect">org.hibernate.dialect.H2Dialect</property>
</session-factory>
</hibernate-configuration>
我收到的错误是:Cannot resolve class 'jdbc'
。我和Maven安装了H2。
答案 0 :(得分:2)
我相信你可能想要'。'而不是你班级名称中的':'。
请参阅http://docs.jboss.org/hibernate/orm/3.3/reference/en-US/html/session-configuration.html
或者看起来您还有驱动程序类和交换的连接URL属性。