解决Mybatis-plus和pagehelper依赖冲突

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Mybatis-plus和pagehelper依赖冲突相关的知识,希望对你有一定的参考价值。

参考技术A 因项目需要,在springboot中需要引入mybatis-plus,在maven引入后,启动过程中报如下的错误:

在项目中,事先已经引入了关于pagehelper相关的依赖:

现在引入了mybatis-plus依赖:

从而产生了冲突,pagehelper是包含了Mybatis以及Mybatis-Spring,而MyBatis-Spring依赖冲突,系统自动用了MyBatis=plus的MyBatis-spring。

    如果不需要用到pagehelper-spring-boot-starter相关,可以注释掉pagehelper-spring-boot-starter依赖。

    或者可以把pagehelper中的mybatis依赖删除即可。

Mybatis-Plus与pagehelper共同使用出现的包冲突问题NoClassDefFoundErrororgmybatislogging

pom.xml

		<!--mybatis-plus-->
        <dependency>
            <groupId>com.baomidou</groupId>
            <artifactId>mybatis-plus-boot-starter</artifactId>
            <version>3.2.0</version>
        </dependency>

        <!--pageHelper 分页插件-->
        <dependency>
            <groupId>com.github.pagehelper</groupId>
            <artifactId>pagehelper-spring-boot-starter</artifactId>
            <version>1.2.10</version>
            </exclusions>
        </dependency>

项目启动报错

解决办法

排除掉冲突的包

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

以上是关于解决Mybatis-plus和pagehelper依赖冲突的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis-Plus使用PageHelp无效

Mybatis-Plus与pagehelper共同使用出现的包冲突问题NoClassDefFoundErrororgmybatislogging

优雅写代码系统springboot+mybatis+pagehelper+mybatisplus+druid教你如何优雅写代码

项目中途引入Mybatis-plus后报错:Caused by: java.lang.ClassNotFoundException: org.mybatis.logging.LoggerFactory

Mybatis-Puls & pagehelper分页问题

Mybatis-Puls & pagehelper分页问题