如果是 Spring,我应该继承什么类来创建数据库集成测试?
我想创建一个用于集成测试的单元测试。我应该继承什么类才能提交/回滚事务? AbstractTransactionalSpringContextTests
已弃用。建议使用 AbstractJUnit38SpringContextTests
代替,但我找不到如何控制事务。
I want to create a unit test for integration testing. What class should I inherit to be able to commit/rollback transactions? AbstractTransactionalSpringContextTests
is deprecated. It's recommended to use AbstractJUnit38SpringContextTests
instead, but I cannot find how to control transactions there.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查一下 和 这个
简而言之,你需要:
这意味着你需要 JUnit 4.x
Check this and this
In short, you need:
That would mean you need JUnit 4.x
无需将
@Transactional
放在方法级别,可以直接将其放在类级别No need to put the
@Transactional
in the method level you can directly place it in class level