欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

解决Mybatis-plus和pagehelper依赖冲突的方法示例

程序员文章站 2022-05-14 15:09:14
简介mybatis-plus(简称 mp)是一个mybatis的增强工具,在 mybatis 的基础上只做增强不做改变,为简化开发、提高效率而生。启动即会自动注入基本 curd,性能基本无损耗,直接面...

简介

mybatis-plus(简称 mp)是一个 mybatis 的增强工具,在 mybatis 的基础上只做增强不做改变,为简化开发、提高效率而生。

启动即会自动注入基本 curd,性能基本无损耗,直接面向对象操作

mybati-plus本身自带分页功能,但是我个人一直是使用pagehelper进行分页,所以在pom中添加了pagehelper依赖,但是运行项目后发现jar包冲突,面对冲突我们应该怎么解决它呢,看完如下内容便可轻松解决

先看依赖

运行项目

***************************
application failed to start
***************************
description:
an attempt was made to call a method that does not exist. the attempt was made from the following location:
com.baomidou.mybatisplus.core.mybatismapperannotationbuilder.getlanguagedriver(mybatismapperannotationbuilder.java:369)
the following method did not exist:
com.baomidou.mybatisplus.core.mybatisconfiguration.getlanguagedriver(ljava/lang/class;)lorg/apache/ibatis/scripting/languagedriver;
the method's class, com.baomidou.mybatisplus.core.mybatisconfiguration, is available from the following locations:
jar:file:/applications/mrwang/maven/privite_wang_repository/com/baomidou/mybatis-plus-core/3.1.2/mybatis-plus-core-3.1.2.jar!/com/baomidou/mybatisplus/core/mybatisconfiguration.class
it was loaded from the following location:
file:/applications/mrwang/maven/privite_wang_repository/com/baomidou/mybatis-plus-core/3.1.2/mybatis-plus-core-3.1.2.jar
action:
correct the classpath of your application so that it contains a single, compatible version of com.baomidou.mybatisplus.core.mybatisconfiguration
disconnected from the target vm, address: '127.0.0.1:55790', transport: 'socket'
process finished with exit code 0

纠正应用程序的类路径,使其包含com.baomidou.mybatisplus.core.mybatisconfiguration的单一兼容版本

解决Mybatis-plus和pagehelper依赖冲突的方法示例

标红的部分是灰色的,看后面括号中的意思 (为冲突而生 ),这个包跟上面的包是一样的,上面是亮的,下面是灰色的,说明系统用了上面的jar包,导致下面jar包提示冲突,但为什么不用下面的,自己私下花点时间 研究一下,当然我们的目的不是解决这个冲突,因为这个被系统检测出来了,系统自动停用了一个,我们要解决系统检测不出来的冲突

引入 mybatis-plus 之后请不要再次引入 mybatis 以及 mybatis-spring,以避免因版本差异导致的问题。(mybatis-plus官网原话)

pagehelper依赖包中由上图得知,也是包含了mybatis 以及 mybatis-spring,而mybatis-spring依赖冲突,系统自动用了mybatis-plus中的mybatis-spring,所以我们只需要把pagehelper中的mybatis依赖删除即可,具体操作如下

在version 下面添加 exclusions依赖(排除)

重启项目并测试

postman测试结果

解决Mybatis-plus和pagehelper依赖冲突的方法示例

 问题完美解决了

到此这篇关于解决mybatis-plus和pagehelper依赖冲突的方法示例的文章就介绍到这了,更多相关mybatis-plus和pagehelper依赖冲突内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!