Spring Hibernate maven POM
我不久前使用过 Hibernate,但它已经生锈了。我想再次启动并运行它,与 Spring 和注释一起使用。显然使用所有依赖项的当前版本。
我将通过编写一些 JUnit 测试和一些内存数据库来完成此任务。
因此,我需要一个 Maven POM 依赖项元素来下拉最小依赖项集:Hibernate、Spring、数据库和测试框架等。我将希望使用 Maven 来启动和停止数据库作为测试的一部分阶段,所以我需要一个内存数据库,它有一个具有适当目标的 Maven 插件。
谢谢...
I used Hibernate a while back, but it's way rusty. I want to get up and running again with this, used with Spring and annotations. Using current versions of all the dependencies obviously.
I am going to do this by writing some JUnit tests and with some in-memory database.
So I need a Maven POM dependencies element that pulls down the minimal dependency set: Hibernate, Spring, Database and test frameworks etc. I will want to use Maven to start and stop the database as part of the test phase, so I need an in-memory database that has a maven plugin with the appropriate goals.
Thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
下面是带有 Spring、JPA、Oracle 数据库的 POM
Below is POM with Spring, JPA, Oracle database
目前我手头有这些,如果有需要的话我会更新的
This is what I have at the moment, I shall update later if necessary
顺便说一句,我遇到了同样的问题,我发现了这个 tutorial (使用 hibernate 4 和 spring 3.1),它使用一个相当小的 pom 文件(使用 mysql)
这是他们的 pom 的副本:
By the way, I got into the same question and I found this tutorial (using hibernate 4 and spring 3.1) which uses a quite smaller pom file (using mysql)
Here is a copy of their pom: