使用注释在 Spring junit 测试中注入 sql 数据
我将 Junit 与 spring-test 一起使用,我希望使用此注释进行经典的事务测试:
@Injectdata("classpath:src/test/mydata.sql")
@Test
public void myTest throws Exception {
// ...
}
此数据将在同一事务中使用 jdbcspring 模板注入。这些数据将可用于 只有这个测试。
实际上,我以这种方式注入数据:
@Test
public void myTest throws Exception {
jdbcTemplate.update("my sql query);
}
我知道 Unitils 框架做同样的事情,但使用数据集 dbunit 文件。
im using Junit with spring-test and i would like to have a classic transactionnal test with this annotation:
@Injectdata("classpath:src/test/mydata.sql")
@Test
public void myTest throws Exception {
// ...
}
This data will be injected with the jdbcspring template in the same transaction & those datas will be available for
only this test.
Actually, im injecting data this way :
@Test
public void myTest throws Exception {
jdbcTemplate.update("my sql query);
}
I know that Unitils framework do the samething but with a dataset dbunit file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通过自己创建一个解决方案找到了解决方案。
首先创建 Spring 测试使用的侦听器:
比在类测试中添加:
技巧 是添加通常由 Spring 自动添加的所有侦听器(如果您不添加侦听器)。避免这种情况会导致奇怪的错误。
这没有记录,但我发现如果没有带有事务性 Spring 测试的侦听器,Spring 会自动添加这 3 个侦听器(感谢调试模式!)
最后你可以给我们这个很酷的注释,如下所示:
你甚至可以使用相对路径或绝对路径。
当然,插入会像其他插入一样在最后自动回滚。
I have found the solution by creating one myself.
First create the listener used by Spring test:
Than on your class test add:
The TRICK was to add ALL listeners normally added automatically by Spring if you dont add listeners. Avoiding that lead to weird errors.
This is not documented but ive found that without listener with a transactionnal spring test those 3 listeners are added automatically by Spring (thanks the debug mode!)
And finally you cand us this cool annotation like this :
You can even use relative paths or absolute path.
And naturally the insertion will be like others inserts automatically rollback at the end.
也许@Sql注释可以做得更好。
Maybe @Sql annotation can do this better.