我正在寻找一种方法来使用GWT的2.5 Showcase项目运行superdev模式+源地图。
我按照以下说明操作: https://developers.google.com/web-toolkit/articles/superdevmode http://blog.daniel-kurka.de/2012/07/mgwt-super-dev-mode.html
我在eclipse上创建了一个使用gwt-2.5.0.rc1的新Web应用程序项目,并生成了一些示例代码(Hello服务器)。
我能够在端口9876上运行代码服务器并将其导向我的src文件夹。 导航到我的应用程序,按下“开发模式”书签。重新编译测试项目, 它成功重新编译,但在eclipse中出现以下异常失败:
JavaScriptHost.invokeNativeObject(String, Object, Class<?>[], Object[]) line: 91
Exception in thread "Thread-4" java.lang.NullPointerException
深入了解异常,我正在
__gwt_getProperty([string: 'user.agent']): Property 'user.agent' of object is not a function
和
[ERROR] [test] Failed to load module 'test' from user agent 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_7_4) AppleWebKit/536.11 (KHTML, like Gecko) Chrome/20.0.1132.57 Safari/536.11' at localhost:50072
我正在寻找一个关于如何在Gwt的2.5 Showcase样本上运行它的详细示例。
更新: 当我在Mail示例上尝试它时,我注意到我的代码服务器没有输出 Mail.html 文件。相反,这是代码服务器的输出:
mail (GWT Code Server)
Messages from the last time this module was compiled.
Output Files
(From the last successful compile.)
3FB1F1BBB0C7AED7089C2E77BAB03277.cache.js
clear.cache.gif
compilation-mappings.txt
mail.devmode.js
mail.nocache.js
没有Mail.html文件。这可能有助于诊断。
答案 0 :(得分:2)
缺少的链接是在* .gwt.xml文件中添加用户代理。
<set-property name="user.agent" value="safari" />