我正在使用 Netbeans hibernate 和 MySQL 开发一个应用程序,这很好用。将后端切换到 Derby Embedded 数据库,hibernate 无法进行逆向工程。
随着消息: cannot access database with the configuration in "hibernate.cfg"
我的配置:
<hibernate-configuration>
<session-factory>
<property name="hibernate.default_schema">servlandDERBY</property>
<property name="hibernate.connection.driver_class">org.apache.derby.jdbc.EmbeddedDriver</property>
<property name="hibernate.connection.url">jdbc:derby:servlandDERBY</property>
<property name="hibernate.dialect">org.hibernate.dialect.DerbyDialect</property>
<property name="hibernate.show_sql">true</property>
<property name="hibernate.query.factory_class">org.hibernate.hql.ast.ASTQueryTranslatorFactory</property>
</session-factory>
我在我的项目中包含了 jar 文件 javaDB,其中包含 derby.jar 我是否必须在 Netbeans 中进行任何其他设置或额外配置?