我有一个 .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" />