iBatis 3 不向后兼容?

发布于 2024-08-10 04:44:02 字数 90 浏览 8 评论 0原文

  1. 有谁知道为什么API不向后兼容?
  2. 它仍然是线程安全的吗?
  3. 有人知道从 2.x 到 3.x 的迁移文档吗?
  1. Does anyone know why the API is not backward compatible?
  2. Is it still thread safe?
  3. Anyone know of any migration document from 2.x to 3.x?

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

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

发布评论

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

评论(2

喜你已久 2024-08-17 04:44:02

您可以在 “iBATIS 3 中的新增功能”< 中找到几乎所有问题的答案/a> 论文(来自 IBM):

总结:iBATIS 是一个主要用于数据访问对象(DAO)和对象关系映射(ORM)的项目。您可以使用它轻松处理 Java™ 对象和数据库。 iBATIS 3 beta 9 的更新于 2010 年 1 月 23 日发布。iBATIS 3 是 iBATIS 的完全重写版本,并包含一些重要更新。本文介绍 iBATIS 3 中的一些新增功能。

另一篇论文是 "从 iBatis 2.x 迁移到 3.0" 由 François Schiettecatte 撰写。

iBatis/mybatis 2.3.4 和 3.0.4 版本之间的兼容性问题列表 您可以在 Java 上游跟踪器 中找到。

Answers for almost all your questions you may find in "What's new in iBATIS 3" paper (from IBM):

Summary: iBATIS is a project used primarily for data access object (DAO) and object-relational mapping (ORM). You can use it to easily work with Java™ objects and databases. The update for iBATIS 3 beta 9 was posted 23 Jan 2010. iBATIS 3 is a completely rewritten version of iBATIS and includes some significant updates. This article introduces some of what's new in iBATIS 3.

Another paper is "Migrating from iBatis 2.x to 3.0" written by François Schiettecatte.

The list of compatibility issues for iBatis/mybatis between 2.3.4 and 3.0.4 versions you can find in the Java Upstream Tracker.

憧憬巴黎街头的黎明 2024-08-17 04:44:02

它不完全向后兼容。我的意思是,这不是替换,如果只是替换 Jar 文件,一切都将不起作用。

您必须在源代码、xml 配置和 spring 配置文件中自行考虑一些命名空间更改和 API 更新。

例如,随着 API 的变化,myBatis 3 与 Spring 内置的“ibatis”支持船不兼容。但版本 3 附带了自己的 spring beans,您可以通过一些更改完美运行。

It is not fully backward compatible. I mean it is not a drop in replacement, and everything will not work if you just replace the Jar file.

There are some namespace changes and API update you will have to take case yourself in your source, xml config and spring configuration file.

For example, myBatis 3 does not compatible with the build-in "ibatis" support ship from spring, as the API changes. But version 3 ship with it own spring beans that you can run perfectly with some changes.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文