0

当我尝试使用官方网站上记录gwt:run的 gwt-maven-plugin ( )运行托管模式时,出现错误:

The parameters 'runTarget' for goal org.codehaus.mojo:gwt-maven-plugin:2.4.0:run are missing or invalid 

如何解决这个问题呢?
更新:这是在我的 POM 中:

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>gwt-maven-plugin</artifactId>
            <version>${gwt.version}</version>
            <executions>
                <execution>
                    <configuration>
                        <module>ff.ff.dd.Archiving</module>
                        <runTarget>Archiving.html</runTarget>

                        <draftCompile>true</draftCompile>
                    </configuration>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
4

2 回答 2

1

您需要指明该目标的所有强制配置选项。

于 2012-05-05T12:37:08.280 回答
0

在 netbean 中制作目标 gwt:debug

在属性中 -Dgwt.module=UR 模块名称 -Dgwt.extraJvmArgs=-Xmx2048m -Dgwt.extraJvmArgs=-XX:PermSize=32m -Dgwt.extraJvmArgs=-XX:MaxPermSize=512m war:exploded gwt:debug

现在在控制台上运行它你会看到监听端口现在进入调试菜单并选择“附加调试器”并告诉端口和主机.....现在你的 GWT 开发模式现在在 GWT 调试中启动你

于 2013-12-26T12:18:00.663 回答