时间:2021-05-20
application.yml
spring: datasource: url: jdbc:mysql://127.0.0.1/jpa?useUnicode=true&characterEncoding=utf-8&useSSL=false username: root password: 123456 driver-class-name: com.mysql.jdbc.Driver jpa: hibernate: # 更新或者创建数据表结构 ddl-auto: update # 控制台显示SQL show-sql: true properties: hibernate.format_sql: truehttp://localhost:8080/emp_sort?page=1&size=10 url格式
{ "content": [{ "lastName": "7QW", "email": "453@qq.com", "birth": "2018-08-06", "createTime": "2018-08-30T07:40:34.000+0000", "id": 5, "dempartment": { "deptName": "BBB", "id": 2 } }, { "lastName": "qax", "email": "1223@qq.com", "birth": "2018-08-06", "createTime": "2018-08-24T07:40:56.000+0000", "id": 6, "dempartment": { "deptName": "AAA", "id": 1 } } }], "pageable": { "sort": { "sorted": true, "unsorted": false }, "offset": 0, "pageNumber": 0, "pageSize": 10, "unpaged": false, "paged": true }, "last": true, "totalElements": 6, "totalPages": 1, "number": 0, "size": 10, "sort": { "sorted": true, "unsorted": false }, "numberOfElements": 6, "first": true}补充:Spring Data Jpa普通分页+排序分页
SpringBoot2 使用jpa分页问题
pojo
@Entity@Table(name = "user")public class User {@Id @GeneratedValue(strategy = GenerationType.IDENTITY) private Integer id; @Column private String userName; @Column private String password; @Column private String age; //省略get、set }IUserService
//jpa简单分页Page<User> getPage(Integer pageNum,Integer pageSize);UserService
@Override public Page<User> getPage(Integer pageNum, Integer pageSize) { /** *之前看到别的博主直接new PageRequest(pageNum-1,pageSize) *自己实践后报错,可能是因为版本不一致吧 *查看PageRequest的底层构造方法并没有对应的只有of方法对应 *后经实验成功! */ //创建一个pageable,调用它的实现类PageRequest的of()方法 Pageable pageable = PageRequest.of(pageNum - 1, pageSize); Page<User> userPage = userDao.findAll(pageable); return userPage; }Test
@Test void testGetPage(){ //调用service层的getPage()方法 Page<User> userPage = userService.getPage(1, 5); /** * userPage.getContent() * getContent(); 获取查询的结果集 * Page<Object>常用方法 * List<T> getContent(); 将所有数据返回为List * long getTotalElements();返回元素总数 * int getTotalPages(); 返回分页总数 */ List<User> users = userPage.getContent(); for (User user : users) { System.out.println(user); } }结果:
User{id=17, userName=‘大锤', password=‘1***3', age=23}User{id=18, userName=‘小黑', password=‘w***w', age=21}User{id=19, userName=‘小白', password=‘2***1', age=29}User{id=20, userName=‘小红', password=‘4***2', age=19}User{id=21, userName=‘小芳', password=‘2***3', age=17}IUserService
同上
UserService
@Override public Page<User> getPage(Integer pageNum, Integer pageSize) { //普通查询跟排序查询的唯一区别在于Sort //排序方式,这里的by()方法跟上面的那个of()方法作用差不多 //Sort.Direction.DESC: 倒序 //Sort.Direction.ASC :默认升序 //Sort.by(Sort.Direction.***, "实体类中的字段"); //根据实体类中的字段进行排序(我使用的"age") Sort sort = Sort.by(Sort.Direction.DESC, "age"); //创建一个pageable,调用它的实现类PageRequest的of()方法 //将sort加入到of()中排序完成 Pageable pageable = PageRequest.of(pageNum - 1, pageSize,sort); Page<User> userPage = userDao.findAll(pageable); return userPage; }Test
省略单元测试
结果:
User{id=19, name=‘小白', password=‘2***1', age=29}User{id=16, name=‘老李', password=‘8***7', age=25}User{id=17, name=‘大锤', password=‘1***3', age=23}User{id=15, name=‘老宋', password=‘9***0', age=22}User{id=18, name=‘小黑', password=‘w***w', age=21}以上为个人经验,希望能给大家一个参考,也希望大家多多支持。如有错误或未考虑完全的地方,望不吝赐教。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
jpa解决懒加载异常在我上一遍文章上进行行修改,SpringBoot2实现JPA分页和排序分页实体类上改:@Entity@Table(name="employe
一、使用Springboot+Jpa实现对mysql数据库的增删改查和分页功能JPA是JavaPersistenceAPI的简称,中文名Java持久层API,是
本文将介绍在RESTAPI中实现分页的基础知识。我们将专注于使用SpringBoot和SpringData在SpringMVC中构建REST分页。分页是一种处理
从这篇文章开始以springboot2为主要版本进行使用介绍。Springboot2特性springboot2在如下的部分有所变化和增强,相关特性在后续逐步展开
SpringBoot整合mybatis分页操作SpringBoot整合Mybatis进行分页操作,这里需要使用Mybatis的分页插件:pageHelper,关