我最近开始阅读并尝试了GXT.
的工作
几天前,我试图运行一个简单的GxtGridExample
代码。
源代码:GxtGridExample
它确实编译并正常运行
但是,当我尝试在网络浏览器中运行它时给出一些像http://www.localhost:8888/
这样的网址时,它给了我以下警告。
[WARN] Can not serve /GxtGridExample.html directly. You need to include it in <static-files> in your appengine-web.xml.
的当我尝试通过将代码包含在&lt;中来重新运行代码时静态文件&gt;,它给了我一些新东西,可以在同一个文件中添加。
这个警告到底意味着什么? 如果我无法正确提出我的问题,请原谅我。
感谢。
答案 0 :(得分: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
查看更多信息