java - 使用 android 从 google 应用引擎查询实体

标签 java android database web-services google-app-engine

我已经尝试了一千种方法。截至目前,我查询任何内容的唯一方法是获取整个列表并以这种方式查看它!这需要很多时间。如何在 Google 应用引擎中查询某些内容,例如仅提取投票数 > 100 票的实体。

我正在关注井字棋示例 https://github.com/GoogleCloudPlatform/appengine-endpoints-tictactoe-javahttps://developers.google.com/eclipse/docs/endpoints-addentities 在示例中,我只是将注释切换为引号。

这是我当前的代码,例如我如何获取实体 这是一个异步任务,加载每个任务都需要很长时间

 protected CollectionResponseQuotes doInBackground(Context... contexts) {

      Quotesendpoint.Builder endpointBuilder = new Quotesendpoint.Builder(
          AndroidHttp.newCompatibleTransport(),
          new JacksonFactory(),
          new HttpRequestInitializer() {
          public void initialize(HttpRequest httpRequest) { }
          });
  Quotesendpoint endpoint = CloudEndpointUtils.updateBuilder(
  endpointBuilder).build();
  try {


      quotes = endpoint.listquotes().execute();

       for (Quotes quote : quotes.getItems()) {

           if (quote.getVotes() > 3) {

           quoteList.add(quote);

            }  

 }

以下是我创建端点时 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();
}

/**
 * This method gets the entity having primary key id. It uses HTTP GET method.
 *
 * @param id the primary key of the java bean.
 * @return The entity with primary key id.
 */
@ApiMethod(name = "getquotes")
public quotes getquotes(@Named("id") String id) {
    EntityManager mgr = getEntityManager();
    quotes quotes = null;
    try {
        quotes = mgr.find(quotes.class, id);
    } finally {
        mgr.close();
    }
    return quotes;
}

尝试使用用户光标,但现在确定它是如何工作的。我试过了

  Cursor cursor = db.rawQuery("select * from Votes WHERE Votes >" + 250 , null);
  quotes = endpoint.listquotes().setCursor(cursor).execute();

最佳答案

您是否尝试将参数传递给endpoint.listquotes()? 具体来说,参数“limit”用于限制结果数量,参数“cursor”用于更改选择标准?

关于java - 使用 android 从 google 应用引擎查询实体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17735985/

相关文章:

ios - 一旦用户确认,如何将所有更改写入数据库?

html - 如何在JSP中使用数组将Html表值插入数据库

java - 通过 REST 发送包含加密数据的字节数组

android - 检测隐藏 fragment 中的 View 可见性

java - 如何正确打印枚举器元素?

android - Google Maps Android API v2 是免费的吗?

android - 条值的自定义位置

database - 在单个 session 中删除临时表

java - 为什么 JVM 类加载器必须在第一次主动使用之前才​​报告问题?

java - 如何修复javac包不存在?