Eclipse を使用して Google アプリ エンジン クライアントを作成し、Google が配布する Android デモを作成しました。バックエンドといくつかのモデルを作成しました。AndroidからGAEのデータベースにエンティティを追加すると、最初に作成された最新のものではなく、日付順に並べ替えられます。キーは現在の日付だけで、Android に関連付けられています。グーグルが私のプロジェクトで私のために作成したため、バックエンドの操作方法がわかりません。代わりに、またはアイテムを追加するときにデータで並べ替えて、最新のリストを一番上に保つことができるように、すばやく変更できますか?
編集された質問、これは Google が生成したエンドポイント クラスです。新しく追加されたエンティティを最初に受け取るように変更するにはどうすればよいですか?
@Api(name = "quotesendpoint", namespace = @ApiNamespace(ownerDomain = "projectquotes.com" ownerName = "projectquotes.com", packagePath = ""))
public class quotesEndpoint {
/**
* This method lists all the entities inserted in datastore.
* It uses HTTP GET method and paging support.
*
* @return A CollectionResponse class containing the list of all entities
* persisted and a cursor to the next page.
*/
@SuppressWarnings({ "unchecked", "unused" })
@ApiMethod(name = "listquotes")
public CollectionResponse<quotes> listquotes(
@Nullable @Named("cursor") String cursorString,
@Nullable @Named("limit") Integer limit) {
EntityManager mgr = null;
Cursor cursor = null;
List<quotes> execute = null;
try {
mgr = getEntityManager();
Query query = mgr.createQuery("select from quotes as quotes");
if (cursorString != null && cursorString != "") {
cursor = Cursor.fromWebSafeString(cursorString);
query.setHint(JPACursorHelper.CURSOR_HINT, cursor);
}
if (limit != null) {
query.setFirstResult(0);
query.setMaxResults(limit);
}
execute = (List<quotes>) query.getResultList();
cursor = JPACursorHelper.getCursor(execute);
if (cursor != null)
cursorString = cursor.toWebSafeString();
// Tight loop for fetching all entities from datastore and accomodate
// for lazy fetch.
for (quotes obj : execute)
;
} finally {
mgr.close();
}
return CollectionResponse.<quotes> builder().setItems(execute)
.setNextPageToken(cursorString).build();