使用Java在Google App Engine中分页

前端之家收集整理的这篇文章主要介绍了使用Java在Google App Engine中分页前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要创建简单的对象分页,但是当我阅读手册时,我发现了query.setRange(5,10);将获取10个对象,即使只需要5个对象.

反正有没有获取所需的对象?

编辑:我开始赏金,所以你可以向我展示Java中的简单示例代码,然后我会接受你的回答.

解决方法

这个怎么样:
List<Employee> results = (List<Employee>) query.execute();
// Use the first 20 results...

Cursor cursor = JPACursorHelper.getCursor(results);
String cursorString = cursor.toWebSafeString();
// Store the cursorString...

// ...

// Query query = the same query that produced the cursor
// String cursorString = the string from storage
Cursor cursor = Cursor.fromWebSafeString(cursorString);
query.setHint(JPACursorHelper.CURSOR_HINT,cursor);
query.setRange(0,20);

List<Employee> results = (List<Employee>) query.execute();
// Use the next 20 results...

从:

How to use datastore cursors with jpa on GAE

也:

http://groups.google.com/group/google-appengine-java/browse_thread/thread/5223215ff24c3b3e/d22297d1d76a9c8b

或者没有JPA,请参阅:

http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/Cursor.html

原文链接:https://www.f2er.com/java/129044.html

猜你在找的Java相关文章