-1

I am looking for in memory database easy to use with Spring, Hibernate, JavaConfig and Maven.

I am working on a example Spring Java Application using Spring, Hibernate, JavaConfig and Maven and I need a very easy to setup and use in memory database..

I would like to hear from others on which one will be easy to add to my project with JavaConfig, Maven, Hibrenate and Spring

thanks :)

4

3 回答 3

2

HSQLDB 或 H2 都可以工作。我更喜欢 H2 并将它与 DbUnit 一起用于我的所有 JUnit 单元测试作为嵌入式数据库。但是,我两者都使用过,并且两者都可以很好地与您提到的内容一起使用。任一选项的最佳部分是互联网上的大量示例:)

于 2013-04-26T13:39:06.477 回答
1

我们已经成功使用HSQLDB。这很容易开始;Hibernate 支持的方言。

于 2013-04-26T13:37:07.280 回答
1

过去称为 Derby 的东西现在被捆绑到 JDK 7 中:

http://www.oracle.com/technetwork/java/javadb/overview/index.html

没有比这更容易的了。

于 2013-04-26T13:39:28.683 回答