添加后,最新添加到最新添加到GAME的实体?

时间:2013-07-27 04:43:26

标签: java android database google-app-engine google-cloud-storage

我创建了一个使用eclipse的谷歌应用引擎客户端和Android演示谷歌实践。我创建了后端和一些模型。当我在GAE上将一个实体从android添加到我的数据库时,它按日期排序,而不是先创建最新的。关键是它只是当前日期和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();

1 个答案:

答案 0 :(得分:1)

您在GAE中的数据存储区查看器中看到的顺序并不重要,因为它只是显示数据存储区中的当前数据,并以实体ID的递增顺序显示(如果使用自动ID)。巧合的是,这也可能是日期的增加。您无法修改此显示模式。

重要的是您的查询所看到的顺序,这由索引决定。因此,如果您需要按日期的降序获取实体,那么如果您的日期条目保留为索引,GAE将自动拥有日期索引。您只需要通过在date属性上指定降序排序来查询实体。

编辑: 根据添加的代码,下面的修改应该按照日期的降序查询实体。

1,在您的实体中添加新的日期属性:

private Date entrydate;

2,在创建实体时,将当前日期添加到此属性

yourentity.setEntryDate(new Date())

3,查询时,根据日期的降序设置排序

query.setOrdering("entrydate desc");