1. 程式人生 > 程式設計 >maven下mybatis-plus和pagehelp衝突問題的解決方法

maven下mybatis-plus和pagehelp衝突問題的解決方法

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不夠,得兩個都排除。

到此這篇關於maven下mybatis-plus和pagehelp衝突問題的解決方法的文章就介紹到這了,更多相關mybatis-plus和pagehelp衝突內容請搜尋我們以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援我們!