0

我最近开始阅读并尝试在GXT.
几天前工作,我尝试运行一个简单的GxtGridExample代码。

源代码:GxtGridExample

它确实编译并正常运行。
但是,当我尝试在 Web 浏览器中运行它并给出一些 urlhttp://www.localhost:8888/时,它给了我以下警告。


[WARN] Can not serve /GxtGridExample.html directly. You need to include it in <static-files> in your appengine-web.xml.


当我尝试通过将代码包含在 < static-files > 中重新运行代码时,它给了我一些新的东西可以添加到相同的文件中。

该警告究竟是什么意思?
如果我无法正确提出我的问题,请原谅。

谢谢。

4

1 回答 1

0

AppEngine 想知道哪些文件是静态的,因此它可以通过从不同的服务器提供它们来进行优化。您不必单独指定每个文件,您可以使用模式:

<static-files>
        <include path="/**.png" />
        <include path="/**.css" />
        <include path="/**.html" />
        <include path="/**.js" />
</static-files>

在http://code.google.com/appengine/docs/java/config/appconfig.html#Static_Files_and_Resource_Files查看更多信息

于 2011-02-26T00:23:26.833 回答