SpringBoot如何集成PageHelper分页功能
更新时间:2020年03月17日 10:41:29 作者:玉天恒
这篇文章主要介绍了SpringBoot如何集成PageHelper分页功能,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下
添加MyBatis的代码并修改以下部分:
1.添加MyBatisConfig
package myshop.config; import java.util.Properties; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import com.github.pagehelper.PageHelper; @Configuration public class MyBatisConfig { @Bean public PageHelper pageHelper() { System.out.println("Use PageHelper"); PageHelper pageHelper = new PageHelper(); Properties p = new Properties(); p.setProperty("offsetAsPageNum", "true"); p.setProperty("rowBoundsWithCount", "true"); p.setProperty("reasonable", "true"); pageHelper.setProperties(p); return pageHelper; } }
2.修改MyBatisController
package myshop.controller; import java.util.List; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.github.pagehelper.PageHelper; import myshop.bean.UserInfo; import myshop.service.MyBatisService; @RestController public class MyBatisController { @Autowired private MyBatisService myBatisService; @RequestMapping("likeName") public List<UserInfo> likeName(String username) { PageHelper.startPage(1,2); return myBatisService.likeName(username); } }
3.访问地址
http://localhost:8080/likeName?username=天恒
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Springboot整合pagehelper分页功能
- SpringBoot项目中分页插件PageHelper无效的问题及解决方法
- Springboot整合分页插件PageHelper步骤解析
- Springboot 整合通用mapper和pagehelper展示分页数据的问题(附github源码)
- SpringBoot+Mybatis分页插件PageHelper实现分页效果
- springboot +mybatis 使用PageHelper实现分页并带条件模糊查询功能
- SpringBoot整合PageHelper实现分页查询功能详解
- 详解springboot-mysql-pagehelper分页插件集成
- SpringBoot使用PageHelper分页详解
- SpringBoot 把PageHelper分页信息返回给前端的方法步骤
相关文章
SpringBoot利用validation实现优雅的校验参数
数据的校验是交互式网站一个不可或缺的功能,如果数据库中出现一个非法的邮箱格式,会让运维人员头疼不已。本文将介绍如何利用validation来对数据进行校验,感兴趣的可以跟随小编一起学习一下2022-06-06java高效打印一个二维数组的实例(不用递归,不用两个for循环)
下面小编就为大家带来一篇java高效打印一个二维数组的实例(不用递归,不用两个for循环)。小编觉得挺不错的,现在就分享给大家,也给大家做个参考。一起跟随小编过来看看吧2017-03-03Spring中为bean指定InitMethod和DestroyMethod的执行方法
在Spring中,那些组成应用程序的主体及由Spring IoC容器所管理的对象,被称之为bean,接下来通过本文给大家介绍Spring中为bean指定InitMethod和DestroyMethod的执行方法,感兴趣的朋友一起看看吧2021-11-11
最新评论