- Does anyone know why the API is not backward compatible?
- Is it still thread safe?
- Anyone know of any migration document from 2.x to 3.x?
| ||||
feedback
|
|
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. | |||
|
feedback
|
|
Answers for almost all your questions you may find in "What's new in iBATIS 3" paper (from IBM):
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. | ||||
|
feedback
|