Sunday, May 24, 2015

MyBatis 3.3.0 released!

Dear Community,

We have just released MyBatis 3.3.0.

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>

It is available as usual in Github and Maven Central.

Sincerely,
The MyBatis Team.