我有一个名为AwesomesmartGWTUIProject
的智能GWT应用程序示例
javacodegeeks
它的包是com.javacodegeeks.smartgwt.appui
在eclipse中,当我尝试将其作为Web应用程序运行时,我收到以下错误
In order for your application to run correctly, you will need to include these tags in your host page directly. In order to avoid this error, you will need to remove the script tags from the gwt.xml file, or add this property to the gwt.xml file: <set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE'/>
[ERROR] shell failed in doSlowStartup method
Mar 31, 2014 10:07:41 PM com.google.appengine.tools.development.LocalResourceFileServlet doGet
WARNING: No file found for: /awesomesmartgwtuiproject/com.javacodegeek.smartgwt.appui.awesomesmartgwtuiproject.nocache.js
当我尝试在浏览器中运行它时,它根本不显示任何内容。我是smartGwt的新手,所以不熟悉配置。有什么想法吗?
答案 0 :(得分:0)
您编译过GWT项目吗?
项目中是否在正确的位置生成了nocache.js文件?
您必须阅读Understanding the GWT Compiler。
每件事都在上面的链接中定义,包括项目结构,GWT编译等。
在模块gwt.xml文件中使用rename-to
属性。
直接来自以上链接:
您可能已经注意到,其中一个生成的文件以模块命名,后跟.nocache.js后缀。这是GWT引导程序文件。与输出子目录war /类似,此文件的名称也由模块XML文件中的rename-to属性控制。