我正在使用 netbeans,我使用 Maven 进行构建。有一个标志 -nosuperDevMode 用于关闭超级开发模式,但我不知道在哪里以及如何在 netbeans 和 maven 中使用它。
如何关闭超级开发模式?
另外如何访问netbeans中的GWT属性,就像我们可以在eclipse中看到和更改它们一样?
我正在使用 GWT 2.7
我正在使用 netbeans,我使用 Maven 进行构建。有一个标志 -nosuperDevMode 用于关闭超级开发模式,但我不知道在哪里以及如何在 netbeans 和 maven 中使用它。
如何关闭超级开发模式?
另外如何访问netbeans中的GWT属性,就像我们可以在eclipse中看到和更改它们一样?
我正在使用 GWT 2.7
添加
<superDevMode>false</superDevMode>
到您的gwt-maven-plugin
配置,或传递-Dgwt.superDevMode=false
命令行(或从 NetBeans 启动 Maven 时的等效项)。
见https://gwt-maven-plugin.github.io/gwt-maven-plugin/run-mojo.html#superDevMode
默认情况下,超级开发模式被禁用。从 GWT 2.7 开始,开发模式会自动启动超级开发模式。