如何将 HSQLdb 与 Ibatis 结合使用

发布于 2024-12-27 10:13:26 字数 150 浏览 1 评论 0原文

我想在单元测试中使用内存数据库来查询数据,我的项目是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空袭的梦i 2025-01-03 10:13:26

您可以创建一个 iBatis sqlMappings.xml 配置文件,如下所示:

<sql-map-config>

  <properties resource="configuration.properties" />

  <!--The datasource for you application is configured here: -->
  <datasource name = "hsql"
      factory-class="com.ibatis.db.sqlmap.datasource.SimpleDataSourceFactory" 
      default="true">
    <property name="JDBC.Driver" value=""/>
    <property name="JDBC.ConnectionURL" value=""/>
    <property name="JDBC.Username" value=""/>
    <property name="JDBC.Password" value=""/> 
  </datasource>

  <!--Declare the SQL Maps to be loaded for this application. 
      Be sure it's in your classpath. -->
  <sql-map resource="maps/beanMappings.xml"/>


</sql-map-config>

加上一个像这样的configuration.properties 文件:

JDBC.Driver=org.hsqldb.jdbcDriver
JDBC.ConnectionURL=jdbc:hsqldb:hsql://localhost/myDb
JDBC.Username=sa
JDBC.Password=

然后像这样使用它:

String resource = "maps/SqlMapConfig.xml";
Reader reader = Resources.getResourceAsReader(resource);
SqlMap sqlMap = XmlSqlMapBuilder.buildSqlMap(reader);

You can make an iBatis sqlMappings.xml config file something like this:

<sql-map-config>

  <properties resource="configuration.properties" />

  <!--The datasource for you application is configured here: -->
  <datasource name = "hsql"
      factory-class="com.ibatis.db.sqlmap.datasource.SimpleDataSourceFactory" 
      default="true">
    <property name="JDBC.Driver" value=""/>
    <property name="JDBC.ConnectionURL" value=""/>
    <property name="JDBC.Username" value=""/>
    <property name="JDBC.Password" value=""/> 
  </datasource>

  <!--Declare the SQL Maps to be loaded for this application. 
      Be sure it's in your classpath. -->
  <sql-map resource="maps/beanMappings.xml"/>


</sql-map-config>

plus a congifuration.properties file like this:

JDBC.Driver=org.hsqldb.jdbcDriver
JDBC.ConnectionURL=jdbc:hsqldb:hsql://localhost/myDb
JDBC.Username=sa
JDBC.Password=

and then use it like this:

String resource = "maps/SqlMapConfig.xml";
Reader reader = Resources.getResourceAsReader(resource);
SqlMap sqlMap = XmlSqlMapBuilder.buildSqlMap(reader);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文