Skip to content

A MyBatis Generator plugin for MySQL pagination use limit.(MyBatis Generator分页插件,使用MySQL limit)

Notifications You must be signed in to change notification settings

wolfcrane/mybatis-generator-limit-plugin

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

mybatis-generator-limit-plugin

A MyBatis Generator plugin for MySQL pagination use limit.

http://xxgblog.com/2016/05/06/mybatis-generator-mysql-pagination/

Usage

Add the plugin <plugin type="com.xxg.mybatis.plugins.MySQLLimitPlugin"></plugin> into MyBatis Generator configuration file.

<generatorConfiguration>
    <context id="mysqlgenerator" targetRuntime="MyBatis3">
    	<plugin type="com.xxg.mybatis.plugins.MySQLLimitPlugin"></plugin>
    	...
    </context>
</generatorConfiguration>

Running with Maven

pom.xml

<pluginRepositories>
	<pluginRepository>
		<id>mybatis-generator-limit-plugin-mvn-repo</id>
		<url>https://raw.github.com/wucao/mybatis-generator-limit-plugin/mvn-repo/</url>
	</pluginRepository>
</pluginRepositories>
<build>
	<plugins>
		<plugin>
			<groupId>org.mybatis.generator</groupId>
			<artifactId>mybatis-generator-maven-plugin</artifactId>
			<version>1.3.2</version>
			<dependencies>
				<dependency>
					<groupId>mysql</groupId>
					<artifactId>mysql-connector-java</artifactId>
					<version>5.1.34</version>
				</dependency>
				<dependency>
					<groupId>com.xxg</groupId>
					<artifactId>mybatis-generator-plugin</artifactId>
					<version>1.0.0</version>
				</dependency>
			</dependencies>
			<configuration>
				<overwrite>true</overwrite>
			</configuration>
		</plugin>
	</plugins>
</build>

Run mvn mybatis-generator:generator to generate java and xml files.

Using the Generated Objects

XxxExample example = new XxxExample();
...
example.setLimit(10); // page size limit
example.setOffset(20); // offset
List<Xxx> list = xxxMapper.selectByExample(example);

The SQL will be: select ... limit 20, 10

XxxExample example = new XxxExample();
...
example.setLimit(10); // limit
List<Xxx> list = xxxMapper.selectByExample(example);

The SQL will be: select ... limit 10

Download

Jar: https://github.com/wucao/mybatis-generator-limit-plugin/tree/mvn-repo/com/xxg/mybatis-generator-plugin/1.0.0

About

A MyBatis Generator plugin for MySQL pagination use limit.(MyBatis Generator分页插件,使用MySQL limit)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%