0

我是 h2 数据库的新手。我使用浏览器控制台在 h2 中创建了一些表。当我尝试创建它创建的 hibernate.cfg 文件时,如下所示。

<?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">org.h2.Driver</property>
    <property name="hibernate.connection.url">jdbc:h2:~/selva</property>

  </session-factory>
</hibernate-configuration>

但是当我尝试创建逆向工程时,出现以下错误。

为什么会发生?.Netbeans 为 mysql 和 mssql 数据库创建反向工程文件。但为什么不创建 h2?

Cannot establish database connection with selected Hibernate Configuration file. Please verify the database connection details in hibernate.cfg.xml.

1.How to solve the above issue?
2.Is Querying  inmemory database in hibernate is different from the persistent database?
2.Is Configuring inmemory database in hibernate  is different from the persistent database?

任何帮助将不胜感激!!!

4

2 回答 2

0

嘿,我遇到了同样的问题,所以我只是右键单击 netbeans 中特定项目的源包下的默认包,然后制作逆向工程文件...netbeans 然后成功创建了 hibernate.reveng.xml 文件

于 2016-07-30T12:42:54.200 回答
-2

您必须启动 MySQL 服务,然后连接到 MySQL。然后转到 Netbeans 中的服务选项卡。然后停止 Java 数据库。删除任何 Java 数据库连接。然后去MySQL Server Properties。选择基本属性并输入它们。然后选择

Admin Properties
  • Path/Url to admin tool: c:\program files(x86)\mysql\mysql workbench 6.3 cE\MySQLWorkbench.exe

您可以使用phpmyadmindbeaver、或任何其他东西的dbforgestudio管理工具。sql yog

  • Path to stop command:
  • Arguements: -uroot -proot shutdown

如果 root 是您的用户名和密码。首先永远不要将您的库存储在专用文件夹中

  • 点击File > New Project
  • 选择Java Web Application
  • 选择项目名称,取消选中使用专用文件夹存储库
  • 选择 Apache Tomcat,然后在框架下选择 Hibernate 4.3.1
  • 选择新的数据库连接
  • 选择驱动程序Mysql(连接器/ J驱动程序)然后测试连接,如果好的点击完成

然后您必须能够从 Netbeans 执行数据库操作。

  • 单击项目选择 New > Other > Hibernate > Hibernate Reverse Engineering Wizard > 然后命名 > 然后 hibernate.cfg.xml > 完成
  • 然后您必须在 cdg​​ 文件中看到休眠连接属性。

当 Netbeans 与 db 建立连接时,它需要一些时间或一些闪烁,那么您正在做出正确的举动。

在此处输入图像描述

于 2017-03-19T19:56:01.487 回答