In-MemoryDB:在“setUp()”中创建模式单元测试:Netbeans (6.5.1) Hibernate (3) Junit(3)、HSQL (1.8)

发布于 2024-08-14 01:27:33 字数 635 浏览 9 评论 0原文

设置内存数据库、使用 Netbeans 6.5.1 在 Junit (3) 'setUp()' 中使用 Hibernate 的 'hbm2ddl' 工具自动构建架构需要哪些步骤?我没有使用 Hibernate 注释 - 只是一个映射文件。

对于实际代码,我当然想使用磁盘数据库。 [那就是 Junits 存在一个单独的“测试”包]

所以我认为这已经实现了:

  1. 在 Netbeans 6.5.1 中创建一个标准 Java 项目,添加 Hiberate 库。
  2. 创建 POJO、hibernate.cfg 和 hibernate 映射文件。
  3. 将cfg和映射文件复制到测试包中。

设置方法如下所示:

 protected void setUp() throws Exception {
         Configuration config = new Configuration();
         config.configure();
         SchemaExport exporter;
         exporter=new SchemaExport(config);
         exporter.create(true, true);
    }

What are the steps needed to setup an in-memory DB, build the schema automatically with Hibernate's 'hbm2ddl' tool within a Junit (3) 'setUp()' using Netbeans 6.5.1 ? I'm not using Hibernate annotations - just a mapping file.

For the actual code, I want to use an on-disk database of course. [that is the Junits live a separate 'test' package]

So I think this is getting there:

  1. Create a standard Java Project in Netbeans 6.5.1 , add in the Hiberate library.
  2. Create the POJOs, hibernate.cfg and hibernate mapping file.
  3. Copy the cfg and mapping file to the test package.

The setup method looks like this:

 protected void setUp() throws Exception {
         Configuration config = new Configuration();
         config.configure();
         SchemaExport exporter;
         exporter=new SchemaExport(config);
         exporter.create(true, true);
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

治碍 2024-08-21 01:27:33
  1. 在Netbeans 6.5.1中创建一个标准Java项目,添加Hiberate库。
  2. 创建 POJO、hibernate.cfg 和 hibernate 映射文件。
  3. 将cfg和映射文件复制到测试包中。

测试用例的概要如下:

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
...
public class DatabaseTest extends TestCase {
    private static Configuration config;
    private static SessionFactory sessionFactory;
    private static Session session;
...
    @Override
    protected void setUp() throws Exception {
         config = new Configuration();
         config.configure();
         SchemaExport exporter;
         exporter=new SchemaExport(config);
         exporter.create(true, true);
         sessionFactory = config.buildSessionFactory();
         session=sessionFactory.openSession();
    }
...
    @Override
    protected void tearDown() throws Exception {
        session.close();
    }
  1. Create a standard Java Project in Netbeans 6.5.1 , add in the Hiberate library.
  2. Create the POJOs, hibernate.cfg and hibernate mapping file.
  3. Copy the cfg and mapping file to the test package.

The outline of the test case looks like this:

import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
...
public class DatabaseTest extends TestCase {
    private static Configuration config;
    private static SessionFactory sessionFactory;
    private static Session session;
...
    @Override
    protected void setUp() throws Exception {
         config = new Configuration();
         config.configure();
         SchemaExport exporter;
         exporter=new SchemaExport(config);
         exporter.create(true, true);
         sessionFactory = config.buildSessionFactory();
         session=sessionFactory.openSession();
    }
...
    @Override
    protected void tearDown() throws Exception {
        session.close();
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文