将 Spring 2.5 与 Ibatis 3 集成

发布于 2024-08-03 03:52:39 字数 71 浏览 3 评论 0原文

有谁知道如何将新的 Ibatis 与当前的 Spring 2.5 集成?我正在探索将其纳入一个项目,并且很好奇是否有人以前做过。

Does anyone know of a way to integrate the new Ibatis with the current Spring 2.5? I'm exploring pulling it in to a project and was curious if anyone had done it before.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

‖放下 2024-08-10 03:52:39

对此有一个开放的 JIRA 问题 (SPR-5991)。它具有标记为 Spring 3.1 的 iBatis3 支持

There's an open JIRA issue for this (SPR-5991). It has iBatis3 support tagged for Spring 3.1

月寒剑心 2024-08-10 03:52:39

它与 iBatis 2 有很大不同吗?使用 Spring 2.5 和 iBatis 2,您所要做的就是:

<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
    <property name="configLocation" value="SqlMapConfig.xml" />
    <property name="dataSource" ref="dataSource" />
</bean>

Is it very different from iBatis 2? With Spring 2.5 and iBatis 2 all you had to do was:

<bean id="sqlMapClient" class="org.springframework.orm.ibatis.SqlMapClientFactoryBean">
    <property name="configLocation" value="SqlMapConfig.xml" />
    <property name="dataSource" ref="dataSource" />
</bean>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文