0

My gwt compiled to production mode without any issues, but when I try to open the hosted.html file, all that I see is:

This html file is for Development Mode support.

Is this not the correct file or is there something wrong with my configuration or will it only work on a server?

Thanks.

4

1 回答 1

1

hosted.html文件仅在开发模式下使用,其工作是将您的应用程序连接到 DevMode 浏览器插件。当您启动应用程序并将gwt.codesvr查询参数附加到 URL 时,它会被加载。

编译应用程序后,您通常 [*] 需要一个服务器来托管它。简而言之,在没有gwt.codesvr查询参数的情况下启动 DevMode,您的编译文件(那些巨大的<hash>.cache.html)将被拾取而不是hosted.html)。

* 我的意思一般是因为如果你不使用任何服务器端技术,而只使用客户端代码(最终编译为 js),你只需要打开你的 html 主机页面(那不是hosted.htmlAppName.htmlwar目录中的) . 不过相当少见。

于 2013-05-29T09:22:37.763 回答