欢迎来到代码驿站!

当前位置:首页 >

maven下mybatis-plus和pagehelp冲突问题的解决方法

时间:2020-08-31 11:00:19|栏目:|点击:

Maven库:

http://repo2.maven.org/maven2/

Maven依赖查询:

http://mvnrepository.com/

解决办法:

修改pom.xml文件

排除 pagehelp 包的mybatis和mybatis-spring依赖

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

<exclusions></exclusions> 内是要排除的依赖

注:mybatis-plus:3.2.0    pagehelp:1.2.5 。 这个版本组合下,只排除mybatis不够,得两个都排除。

上一篇:vue elementui tree 任意级别拖拽功能代码

栏    目:

下一篇:R语言ggplot2边框背景去除的实现

本文标题:maven下mybatis-plus和pagehelp冲突问题的解决方法

本文地址:http://www.codeinn.net/misctech/4298.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有