English 中文(简体)
Google App 引擎引擎 Java 后端程序版本
原标题:Google App Engine Java Backend app version

我新到 GAE Java 后端, 我不清楚后端与应用程序版本的关系。 我读过 GAE 文件, 搜索了很多, 发现没有任何帮助 。

我的问题是:

如何从已部署版本的后端中选择运行的应用程序版本? 它是否与前端选择的版本完全相同, 即新的后端实例默认使用默认版本?

如果是的话, 那么命令 < code> appcfg 后端更新 [ 后端] 精确更新什么? 只更新配置文件吗?

我真的认为这应该在GAE docs中更清楚地说明。

谢谢

最佳回答

后端没有版本 :

  1. 您可以在 Admin 控制台为前端事件选择默认版本, 但后端无法这样做 。

  2. 更改前端设置的默认版本对后端设置无效 。

  3. 后端只有一个版本 - 通过 appcfg 更新的最新版本 。

所以,当您修改会影响前端和后端实例的代码时, 您需要上传两次 。

问题回答

暂无回答




相关问题
How to make logging.debug work on Appengine?

I m having a tough time getting the logging on Appengine working. the statement import logging is flagged as an unrecognized import in my PyDev Appengine project. I suspected that this was just an ...

gqlQuery returns object, want list of keys

Is there a way to convert the GqlQuery object to an array of keys, or is there a way to force the query to return an array of keys? For example: items = db.GqlQuery("SELECT __key__ FROM Items") ...

Integrating Google AppEngine with a Thick Client

I want to make a multi-user client-server solution with Java Swing thick client as a front-end and Google AppEngine (Java one) as a back-end. The problem is that GAE provides only web-based forms for ...

sorl.thumbnail : thumbnail is not a valid tag library?

I am trying to install sorl.thumbnail but am getting the following error message: thumbnail is not a valid tag library: Could not load template library from django.templatetags.thumbnail, No module ...

热门标签