Skip to content

1.1.1

Compare
Choose a tag to compare
@bes2008 bes2008 released this 21 May 15:28
· 1691 commits to master since this release
  1. 简化依赖
  2. 更新groupId, 从com.github.fangjinuo 更新为 com.github.fangjinuo.sqlhelper

JdbcUrlParser

mybatis pagination plugin

Key Features

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

    • TiDB (北京平凯星辰科技))
    • Doris (Apache Doris,百度研发)
    • 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.sqlhelper</groupId>
    <artifactId>sqlhelper-dialect</artifactId>
    <version>1.1.1</version>
</dependency>
<dependency>
    <groupId>com.github.fangjinuo.sqlhelper</groupId>
    <artifactId>sqlhelper-mybatis</artifactId>
    <version>1.1.1</version>
</dependency>
<dependency>
    <groupId>com.github.fangjinuo.sqlhelper</groupId>
    <artifactId>sqlhelper-mybatis-spring-boot-starter</artifactId>
    <version>1.1.1</version>
</dependency>
<dependency>
    <groupId>com.github.fangjinuo.sqlhelper</groupId>
    <artifactId>sqlhelper-mybatis-spring-boot-autoconfigure</artifactId>
    <version>1.1.1</version>
</dependency>
<dependency>
    <groupId>com.github.fangjinuo.sqlhelper</groupId>
    <artifactId>sqlhelper-mybatis-over-pagehelper</artifactId>
    <version>1.1.1</version>
</dependency>