如何解决maven项目中mybatis-plus与pagehelper版本冲突问题?
- 内容介绍
- 文章标签
- 相关推荐
本文共计248个文字,预计阅读时间需要1分钟。
Maven仓库:[http://repo2.maven.org/maven2/](http://repo2.maven.org/maven2/)Maven依赖查询:[http://mvnrepository.com/](http://mvnrepository.com/)解决方案:修改`pom.xml`文件,移除`pagehelper`依赖。
xml com.github.pagehelper pagehelper
Maven库:
repo2.maven.org/maven2/
Maven依赖查询:
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冲突内容请搜索易盾网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持易盾网络!
本文共计248个文字,预计阅读时间需要1分钟。
Maven仓库:[http://repo2.maven.org/maven2/](http://repo2.maven.org/maven2/)Maven依赖查询:[http://mvnrepository.com/](http://mvnrepository.com/)解决方案:修改`pom.xml`文件,移除`pagehelper`依赖。
xml com.github.pagehelper pagehelper
Maven库:
repo2.maven.org/maven2/
Maven依赖查询:
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冲突内容请搜索易盾网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持易盾网络!

