Skip to content

1.0-RELEASE

Compare
Choose a tag to compare
@bes2008 bes2008 released this 21 May 01:33
· 1738 commits to master since this release

mybatis pagination plugin

Key Features

  1. Supported 90+ databases, you can find them here. Conatins almost all chinese database:

    • TiDB (北京平凯星辰科技))
    • MaxCompute (阿里巴巴)
    • K-DB (浪潮)
    • GBase (南大通用)
    • DM (达梦)
    • OSCAR (神州通用)
    • HighGo (瀚高)
    • KingBase (金仓)
    • OpenBase (东软)
    • SequoiaDB (巨杉)

    If you want know all RDMBS ranking, you can find them in DB Engines.

  2. Supports multiple databases in one application

  3. Supports auto detect dialect, so the dialect option is optional

  4. The performance is higher than Mybatis-PageHelper, because the limit、offset will be setted with PrepareStatement placeholder '?'

  5. Supports plugin use Java SPI

  6. Supports spring boot 1.x , 2.x

  7. Supports mybatis 3.x

  8. Supports JDK6+

<dependency>
    <groupId>com.github.fangjinuo</groupId>
    <artifactId>sqlhelper-dialect</artifactId>
    <version>1.0-RELEASE</version>
</dependency>
<dependency>
    <groupId>com.github.fangjinuo</groupId>
    <artifactId>sqlhelper-mybatis</artifactId>
    <version>1.0-RELEASE</version>
</dependency>
<dependency>
    <groupId>com.github.fangjinuo</groupId>
    <artifactId>sqlhelper-mybatis-spring-boot-starter</artifactId>
    <version>1.0-RELEASE</version>
</dependency>
<dependency>
    <groupId>com.github.fangjinuo</groupId>
    <artifactId>sqlhelper-mybatis-spring-boot-autoconfigure</artifactId>
    <version>1.0-RELEASE</version>
</dependency>
<dependency>
    <groupId>com.github.fangjinuo</groupId>
    <artifactId>sqlhelper-mybatis-over-pagehelper</artifactId>
    <version>1.0-RELEASE</version>
</dependency>