Ticket #269: Allow query with limit.

This commit is contained in:
Michael Jumper
2013-03-03 18:56:26 -08:00
parent 901424593a
commit a26ed664d0
2 changed files with 4 additions and 1 deletions

View File

@@ -52,7 +52,7 @@
<plugin>
<groupId>org.mybatis.generator</groupId>
<artifactId>mybatis-generator-maven-plugin</artifactId>
<version>1.3.0</version>
<version>1.3.2</version>
<executions>
<execution>

View File

@@ -6,6 +6,9 @@
<generatorConfiguration>
<context id="guacamoleTables" targetRuntime="MyBatis3">
<!-- Allow selectByExample with RowBounds -->
<plugin type="org.mybatis.generator.plugins.RowBoundsPlugin"/>
<!-- MySQL JDBC driver class. -->
<jdbcConnection driverClass="com.mysql.jdbc.Driver"
connectionURL="jdbc:mysql://127.0.0.1:3306"