This page details changes between MyBatis Generator (MBG) and Ibator. For most users, the changes should be simple. If you extended any of Ibator's classes to supply custom implementations of code generators or the Java type resolver, you will need to rework those custom classes.
Changes are described assuming you are using XML configuration for MBG. If you are using Java based configuration, then the changes are still required and should be easy to deduce from the description of the XML changes.
Important Note: MBG will correctly parse older Ibator configuration files, so no change is actually required. However, new features will only be implemented in configuration files that conform to the MyBatis Generator DTD.
<!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http://mybatis.org/dtd/mybatis-generator-config_1_0.dtd">
<ibatorConfiguration>
element is renamed to
<generatorConfiguration>
<ibatorContext>
element is renamed to
<context>
<ibatorPlugin>
element is renamed to
<plugin>
<daoGenerator>
element is renamed to
<javaClientGenerator>
daoXXX
methods have been renamed
to clientXXX
.