MGWT / GWT-PhoneGap:MGWT如何在GWT 2.7上使用超级开发模式?

时间:2014-10-03 00:28:29

标签: java javascript cordova gwt mgwt

使用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:

enter image description here

enter image description here

enter image description here

enter image description here

这与GWT 2.6.1完美配合,但是当你点击超级开发模式并点击编译时,使用GWT 2.7,编译器无法完成。

如何使用MGWT和GWT 2.7运行SuperDevMode?

编辑:如何在GWT-PhoneGap环境中运行SuperDevMode?

1 个答案:

答案 0 :(得分:1)

变得容易多了。你需要对GWT 2.7做的唯一事情是添加参数 Web应用程序RunConfiguration中的-superDevMode,它就是它。 您不再需要编译按钮,因为重新加载浏览器时会自动触发编译。关于xsiframe,这是GWT 2.7中的默认链接器。您不需要再执行任何步骤,只需添加参数-superDevMode。