gpt4 book ai didi

google-app-engine - GoogleApps - 如何部署我的应用程序

转载 作者:太空宇宙 更新时间:2023-11-03 15:22:29 25 4
gpt4 key购买 nike

我创建了我的第一个应用程序 GoogleApps,我想将它部署到服务器上。它不起作用,在日志中我发现了一个错误:

Uncaught exception from servlet com.google.appengine.api.datastore.DatastoreNeedIndexException: The index for this query is not ready to serve. See the Datastore Indexes page in the Admin Console. The suggested index for this query is:

<datastore-index kind="Greeting" ancestor="true" source="manual">
<property name="date" direction="desc"/>
</datastore-index>

我想我必须将这段代码粘贴到我的应用程序中,但我不知道在哪里。我正在学习本教程:

Google Apps TUTORIAL - Java

有什么想法吗?

提前致谢:)

最佳答案

假设您使用的是 Java 应用引擎,该代码需要放入位于 WEB-INF 目录中的 datastore-indexes.xml 文件中。完整的 xml 文件如下所示:

<?xml version="1.0" encoding="utf-8"?>
<datastore-indexes autoGenerate="true">
<datastore-index kind="Greeting" ancestor="true" source="manual">
<property name="date" direction="desc"/>
</datastore-index>
</datastore-indexes>

关于google-app-engine - GoogleApps - 如何部署我的应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8301530/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com