GWT 2.5.1 SuperDevMode未启用

时间:2014-06-13 13:23:57

标签: gwt mgwt gwt-2.5 gwt-super-dev-mode

我在GWT / GWTPHONEGAP / MGWT项目上工作,我需要使用gwt 2.5.1和SuperdevMode。

我使用maven和以下命令“classpath gwt:runco​​deServer”,当我编译我的项目时没有发生错误,但是当我去webBrowser使用superDevMode时,它是不可能重新编译的,错误信息是“这个模块有没有启用超级开发模式“虽然我的 * .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该项目存在&amp;来源可用。

按照配置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>

1 个答案:

答案 0 :(得分:0)

问题来自于我在jetty插件中的Web应用程序资源路径中的错误配置。