Skip to content

mybatis-3.3.0

Compare
Choose a tag to compare
@emacarron emacarron released this 23 May 23:41
· 3513 commits to master since this release

Includes two main changes:

  • Ognl has been upgraded to 3.0.11 that is the latest version
  • The default proxy tool is now Javassist and is included inside the mybatis jar

There are some other minor changes and bug fixes. See the details at https://github.com/mybatis/mybatis-3/issues?q=milestone%3A3.3.0

Note that you can still use CGLIB as the proxy factory tool by adding CGLIB to your classpath and setting the MyBatis global parameter as follows:

<settings>
    <setting name="proxyFactory" value="CGLIB"/>
</settings>