5

我有一个 .jsp 页面(我的 gwt 模块的主页),我正在尝试启用超级开发模式,因为我正在迁移到 gwt 2.6。按照我在互联网上找到的解释,一旦我启动了代码服务器并添加了小书签,接下来我必须在浏览器中打开页面,所以我从我的 tomcat 服务器调用 jsp 页面。
问题是什么都没有发生,并且看着 chrome 控制台似乎无法找到我的module/module.nocache.js
任何想法?

编辑:添加 .gwt.xml

<inherits name="XXX.frontend.gwt.Framework"/>

<inherits name="XXX.frontend.gwt.sample.frontend.module.blanc.Module"/>

<!-- Specify the paths for translatable code                    -->
<source path='client'/>
<source path='shared'/>

<!-- Specify the application entry point class                  -->
<entry-point class='XXX.frontend.gwt.client.FrameworkEntryPoint'/>


<!-- Compile for specific browser -->
<!-- <set-property name="user.agent" value="ie8,ie9,ie10,gecko1_8,safari" /-->

<!-- Compile for specific language -->
<extend-property name="locale" values="fr" />
<set-property-fallback name="locale" value="fr" />
<set-configuration-property name='xsiframe.failIfScriptTag' value='FALSE' />
<set-configuration-property name="devModeUrlWhitelistRegexp" value="http://(localhost|127\.0\.0\.1)(:\d+)?/.*" />
<add-linker name="xsiframe" />
<set-property name="compiler.useSourceMaps" value="true" />

4

1 回答 1

1

您必须.nocache.js从您的代码服务器实例加载您的文件。

在你的.jsp你必须有这样的东西:

<script src="http://localhost:9876/myapp/myapp.nocache.js"></script>

在您的 gwt.xml 中,您还需要这些行:

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

<set-property name="compiler.useSourceMaps" value="true" />
于 2014-01-14T14:01:12.647 回答