MyBatis dynamic SQL 1.1.4 release, dynamic SQL generation framework

MyBatis dynamic SQL 1.1.4 has been released, MyBatis Dynamic SQL is to generate dynamic SQL statements framework, may see it as a type-safe SQL template library, it also supports MyBatis3 and Spring JDBC template.

This version includes two enhancements:

  • Support among count, delete, select and update statements to share the where clause
  • Improved Kotlin DSL - removed some extension methods ambiguous, and add a custom builder

As well as a bug fixes:

  • Bug fixes: First, use restrictions / offset in the sub-query / acquisition will lead to the parameter name conflict

Full update which can be viewed:

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

Maven

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

Guess you like

Origin www.oschina.net/news/111606/mybatis-dynamic-sql-1-1-4-released