如何将 HSQLdb 与 Ibatis 结合使用
我想在单元测试中使用内存数据库来查询数据,我的项目是 Ibatis(带注释),用于查询我想在 HSQLDB 的帮助下模拟的实际数据库。
请帮助我如何使用 HSQLDB 配置 iBatis。
还有什么方法可以更好地对功能强烈依赖于数据库的代码进行单元测试。
I want to use in memory database to query for data in my unit testing, my project is Ibatis (with annotation) for querying actual database which I want to mimic with the help of HSQLDB.
Please help me with how to configure iBatis with HSQLDB.
Also is there any way to these better for unit testing with code which is strongly dependent on database in its functions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以创建一个 iBatis sqlMappings.xml 配置文件,如下所示:
加上一个像这样的configuration.properties 文件:
然后像这样使用它:
You can make an iBatis sqlMappings.xml config file something like this:
plus a congifuration.properties file like this:
and then use it like this: