SpringBoot工程中mybatis 2.3.1版本中分页插件导入的依赖
时间: 2024-04-13 21:30:51 浏览: 181
mybatis的分页插件
在 Spring Boot 工程中使用 MyBatis 2.3.1 版本的分页插件,你需要在 pom.xml 文件中添加以下依赖:
```xml
<!-- MyBatis -->
<dependency>
<groupId>org.mybatis.spring.boot</groupId>
<artifactId>mybatis-spring-boot-starter</artifactId>
<version>2.1.4</version>
</dependency>
<!-- 分页插件 -->
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper-spring-boot-starter</artifactId>
<version>1.3.0</version>
</dependency>
```
上述依赖中,`mybatis-spring-boot-starter` 是用于集成 MyBatis 和 Spring Boot 的依赖,而 `pagehelper-spring-boot-starter` 是用于集成分页插件的依赖。
添加了上述依赖后,你可以在你的项目中使用分页插件了。具体的配置可以参考分页插件的官方文档或示例代码。需要注意的是,具体的配置可能会根据你的项目结构和需求而有所差异。
阅读全文