Skip to content

MyBatis Dynamic SQL 1.1.1

Compare
Choose a tag to compare
@jeffgbutler jeffgbutler released this 07 Apr 21:55
· 2167 commits to master since this release

This release includes many enhancements and one small bug fix.

The most important enhancements are as follows:

  1. Added support for limit and offset to the select statement. This support will only work if the underlying database supports limit and offset so use with caution. Many databases do support limit and offset.
  2. Added utility classes to support MyBatis Spring Batch integration. See this page for details: http://www.mybatis.org/mybatis-dynamic-sql/docs/springBatch.html
  3. Added much more robust support for optional conditions. All conditions can now be optionally rendered with lambdas - so users can have complete control over how conditions get rendered into the final SQL. See this page for details: http://www.mybatis.org/mybatis-dynamic-sql/docs/conditions.html

The full list of changes can be viewed here:

https://github.com/mybatis/mybatis-dynamic-sql/issues?q=is%3Aclosed+milestone%3A1.1.1

All artifacts are available in Maven central under these coordinates:

<dependency>
  <groupId>org.mybatis.dynamic-sql</groupId>
  <artifactId>mybatis-dynamic-sql</artifactId>
  <version>1.1.1</version>
</dependency>