0

我将我的应用程序上传到 GAE for java,它映射到我们的域 www.sakshum.org

默认版本是 http://3.sakshumweb.appspot.com/

问题是当我们使用域名访问时,它似乎有一些旧版本,但如果我们访问直接 url,它似乎工作正常。

关于可能是什么问题的任何想法?

4

1 回答 1

1

GAE 上的静态文件缓存大约 10 分钟。您应该尝试禁用 GWT 相关文件的缓存。把它放进你的appengine-web.xml

<!-- Configure serving/caching of GWT files -->
<static-files>
  <include path="**" />

  <!-- The following line requires App Engine 1.3.2 SDK -->
  <include path="**.nocache.*" expiration="0s" />

  <include path="**.cache.*" expiration="365d" />
  <exclude path="**.gwt.rpc" />
</static-files>
于 2012-08-24T06:47:19.447 回答