使用MGWT时,您可以非常轻松地使用SuperDevMode,如下所述:http://blog.daniel-kurka.de/2012/07/mgwt-super-dev-mode.html
gwt.xml config ist:
<add-linker name="xsiframe"/>
<set-configuration-property name="devModeRedirectEnabled" value="true"/>
<set-configuration-property name="mgwt.superdevmode" value="on" />
<set-configuration-property name="mgwt.superdevmode_host" value="http://<yourhost>:<port>" />
在您设置的入口点功能中:
SuperDevModeUtil.showDevMode();
在eclipse中创建Java Run Configuration:
这与GWT 2.6.1完美配合,但是当你点击超级开发模式并点击编译时,使用GWT 2.7,编译器无法完成。
如何使用MGWT和GWT 2.7运行SuperDevMode? strong>
编辑:如何在GWT-PhoneGap环境中运行SuperDevMode? strong>
答案 0 :(得分:1)
变得容易多了。你需要对GWT 2.7做的唯一事情是添加参数 Web应用程序RunConfiguration中的-superDevMode,它就是它。 您不再需要编译按钮,因为重新加载浏览器时会自动触发编译。关于xsiframe,这是GWT 2.7中的默认链接器。您不需要再执行任何步骤,只需添加参数-superDevMode。