本文介绍了如何在 Spring MVC (JPA) 中将实体对象列表转换为页面对象?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个实体的List
.如何使用 Spring MVC 4 和 Spring Data JPA 将其转换为 Page
对象?
I have a List
of entities.How do I convert it to Page
Object using Spring MVC 4 and Spring Data JPA?
推荐答案
有一个Page
实现:
There is a Page
implementation for that:
final Page<Something> page = new PageImpl<>(theListOfSomething);
这篇关于如何在 Spring MVC (JPA) 中将实体对象列表转换为页面对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!