0

我正在寻找一种使用 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 server)。

我能够在端口 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 文件。这可能有助于诊断。

4

1 回答 1

2

缺少的链接是在 *.gwt.xml 文件中添加用户代理。

<set-property name="user.agent" value="safari" />
于 2012-07-21T14:25:34.440 回答