从端点点类中的实体中选择几个属性

时间:2013-06-15 22:59:05

标签: android google-app-engine jpa google-cloud-endpoints

我正在尝试修改端点类中的标准选择查询以从我的实体中获取所选字段。但是,即使在更改查询后,我看到我的查询结果是获取所有字段。代码如下,您可以注意到查询已更新以添加我自己的。我基本上试图形成一个查询,我只从实体获取少量属性而不是获取所有(减少网络数据事务量)。任何帮助表示赞赏。

//QUERY MODIFIED IN THIS METHOD
/**
 * 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 = "listQuizTable")
public CollectionResponse<QuizTable> listQuizTable(
        @Nullable @Named("cursor") String cursorString,
        @Nullable @Named("limit") Integer limit) {

    EntityManager mgr = null;
    Cursor cursor = null;
    List<QuizTable> execute = null;

    try {
        mgr = getEntityManager();
        //Query query = mgr.createQuery("select from QuizTable as QuizTable");

        Query query = mgr.createQuery("select n.quizKey, n.quizDesc, n.uploadDate from QuizTable n");

        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<QuizTable>) 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 (QuizTable obj : execute)
            ;
    } finally {
        mgr.close();
    }

    return CollectionResponse.<QuizTable> builder().setItems(execute)
            .setNextPageToken(cursorString).build();
}

1 个答案:

答案 0 :(得分:1)

GAE数据存储的

Projection queries应该符合您的目的。它将仅返回查询结果中的必填字段,并将不需要的字段留空。现在,要通过云端点接收此修改后的响应,请修改表示单个实体的响应项,使其仅包含必需的字段,而不是实体中的所有字段。然后重复此修改后的单个响应项以创建集合响应项。

投影查询对您可以执行的查询类型有一些限制,例如:结果中所需的字段不能用于相等过滤器。如果你在你的情况下遇到这样的限制,那么你可以直接使用第二个选项而不使用投影查询。也就是说,执行普通查询,然后使用修改后的个人和集合响应项,以便它们只通过云端点发送必需的字段。