mybatis plus 和PageHelper依赖冲突
时间:2021-05-11 17:02:15
收藏:0
阅读:193
引用PageHelper依赖时,去掉PageHelper的mybatis依赖
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>${pagehelper-boot-version}</version>
<exclusions>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
</exclusion>
<exclusion>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
</exclusion>
</exclusions>
</dependency>
原文:https://www.cnblogs.com/linliquan/p/14754621.html
评论(0)