Mybatis-Plus与pagehelper共同使用出现的包冲突问题NoClassDefFoundErrororgmybatislogging
Posted 程序员超时空
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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共同使用出现的包冲突问题NoClassDefFoundErrororgmybatislogging的主要内容,如果未能解决你的问题,请参考以下文章
优雅写代码系统springboot+mybatis+pagehelper+mybatisplus+druid教你如何优雅写代码