开发者

SpringBoot+Mybatis Plus导致PageHelper失效的解决方法

目录
  • 解决方法

解决方法

再PageHelper依赖中,排除MyBATis,因为MybatisPlus整合了Mybatis,而不排除PageHelper中的Mybatis可能导致版本冲突问题

父pom项目中的依赖版本管理

            <dependency&ghttp://www.devze.comt;
                <groupId>com.github.pagehelpandroider</groupId>
                <artifactId>pagehelper-spring-boot-starter</artifactId>
                <version>1.4.7</version>
            </dependency>

子pom项目中的依赖管理

        <!-- pagehelper-->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <exclusions>
                <exclusion>
                    <groupId>org.mybatis</groupId>
                    <artifactId>mybatis</artifactId>
                </exclusion>
    python        </excARstplYlusions>
        </dependency>

到此这篇关于SpringBoot+Mybatis Plus导致PageHelper失效的解决方法的文章就介绍到这了,更js多相关SpringBoot 导致PageHelper失效内容请搜索编程客栈(www.devze.com)以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程客栈(www.devze.com)!

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新开发

开发排行榜