本文介绍了正在下载Google App Engine数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在Google App Engine数据存储中创建表(实体)后,我创建了Web应用程序并将其部署到Google App Engine中。我怀疑是否可以下载实体/数据库?解决方案
启用 remote_api
,将它添加到 web.xml中
:
<的; servlet>
< servlet-name> remote-api< / servlet-name>
< servlet-class> com.google.apphosting.utils.remoteapi.RemoteApiServlet< / servlet-class>
< / servlet>
< servlet-mapping>
< servlet-name> remote-api< / servlet-name>
< url-pattern> / remote_api< / url-pattern>
< / servlet-mapping>
此主题中的详细信息:
然后,按照shay提到的,使用。
(仅作为回答而非评论添加,因为XML在评论中不会格式良好)。
I had created web application and deploy it in Google App Engine after I created table(entity) in Google App Engine datastore. My doubt is it possible to download the entity/database?
解决方案
to enable remote_api
, add this to your web.xml
:
<servlet>
<servlet-name>remote-api</servlet-name>
<servlet-class>com.google.apphosting.utils.remoteapi.RemoteApiServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>remote-api</servlet-name>
<url-pattern>/remote_api</url-pattern>
</servlet-mapping>
details in this thread: http://groups.google.com/group/google-appengine/browse_thread/thread/1bb013cbdd30750b
then, as shay mentioned, use the bulk loader.
(added as an answer instead of a comment only because the XML wouldn't format nicely in a comment.)
这篇关于正在下载Google App Engine数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!