JDK

jdk版本1.7+

ACTable依赖

  1. <dependency>
  2. <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
  3. <artifactId>mybatis-enhance-actable</artifactId>
  4. <version>1.5.0.RELEASE</version>
  5. </dependency>

使用mybatis-plus配合使用为了避免jar包版本冲突问题可以参照以下方式引入依赖

<dependency>
    <groupId>com.gitee.sunchenbin.mybatis.actable</groupId>
    <artifactId>mybatis-enhance-actable</artifactId>
    <version>1.5.0.RELEASE</version>
    <exclusions>
        <exclusion>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-annotation</artifactId>
        </exclusion>
    </exclusions>
</dependency>

异常表现为:项目启动过程中报OrderBy注解ClassNotFindException异常

历史RELEASE版本

历史release版本点此查看