0

我从事 GWT/GWTPHONEGAP/MGWT 项目,我需要使用带有 SuperdevMode 的 gwt 2.5.1。

我使用 maven 和以下命令“classpath gwt:runco​​deServer”,当我编译我的项目时没有发生错误,但是当我去我的 webBrowser 使用 superDevMode 时,无法重新编译,错误消息是“这个模块没有已启用 Super Dev 模式”尽管我的* .gwt.xml 包含启用了以下行的 superDevMode。

<add-linker name="xsiframe"/>
      <set-configuration-property name="devModeRedirectEnabled" value="true"/>
      <set-property name="compiler.useSourceMaps" value="true" />

具有以下入口点

  <entry-point class="**.**.*.client.MgwtAppEntryPoint" /> 

当我去 localhost:9876 项目存在并且源可用。

按照我的 Maven 配置:

码头:

<plugin>
                        <groupId>org.eclipse.jetty</groupId>
                        <artifactId>jetty-maven-plugin</artifactId>
                        <version>9.1.2.v20140210</version>

                        <configuration>

                            <reload>manual</reload>


                            <httpConnector>
                                <port>9090</port><!-- port 8080 already use by tiviz-web -->
                            </httpConnector>

                            <webApp>

                                <baseResource implementation="org.eclipse.jetty.util.resource.ResourceCollection">
                                    <resourcesAsCSV>src/main/webapp,${basedir}/target/tiviz-gwt-0.0.1-SNAPSHOT</resourcesAsCSV>
                                </baseResource>
                                <extraClasspath>${basedir}/src/main/webapp/WEB-INF/classes</extraClasspath>
                                <allowDuplicateFragmentNames>true</allowDuplicateFragmentNames>

                            </webApp>

                            <systemProperties>
                                    <systemProperty>
                                        <name>gwt.codeserver.port</name>
                                        <value>9876</value>
                                    </systemProperty>
                            </systemProperties>

                        </configuration>

                    </plugin>

和我的 gwt-maven-plugin 配置

<plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>gwt-maven-plugin</artifactId>
                <!-- Plugin configuration. There are many available options, see gwt-maven-plugin 
                    documentation at codehaus.org -->
                <configuration>
                    <!-- run params -->
                    <copyWebapp>false</copyWebapp>
                    <productionMode>false</productionMode>
                </configuration>
            </plugin>
4

1 回答 1

0

问题来自码头插件中我的 webapp 资源路径中的错误配置。

于 2014-07-11T11:50:14.080 回答