如何运行GWT';s Super Dev+;使用Showcase示例的sourcemaps

如何运行GWT';s Super Dev+;使用Showcase示例的sourcemaps,gwt,source-maps,gwt-super-dev-mode,Gwt,Source Maps,Gwt Super Dev Mode,我正在寻找一种通过GWT的2.5 Showcase项目运行superdev模式+源代码映射的方法 我遵循了以下说明: 我在eclipse上创建了一个使用gwt-2.5.0.rc1的新Web应用程序项目,并生成了一些示例代码(Hello服务器) 我能够在端口9876上运行代码服务器,并将他定向到我的src文件夹。 导航到我的应用程序,按下“开发模式开启”书签。重新编译测试项目, 它重新编译成功,但失败,在eclipse中出现以下异常: JavaScriptHost.invokeNativeObj

我正在寻找一种通过GWT的2.5 Showcase项目运行superdev模式+源代码映射的方法

我遵循了以下说明:

我在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的2.5 Showcase示例上运行它的详细示例

更新: 当我在邮件示例上尝试它时,我注意到我的代码服务器没有输出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文件。这可能有助于诊断。

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

<set-property name="user.agent" value="safari" />

也许这与:这似乎很奇怪:JavaScriptHost.invokeNativeObject(String,Object,Class[],Object[])行:线程“thread-4”java.lang.NullPointerException中的91异常。“在eclipse中运行”是什么意思?您可能会意外地将“经典”开发模式与超级开发模式混合在一起?
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
<set-property name="user.agent" value="safari" />