1

我正在关注这个答案(感谢 Ed),发现他没有完全解决问题。

我已经启动并运行了 SuperDevMode / CodeServer,但它不包含我的 html 文件,这使它有点没用。我真的需要运行 2 个 Web 服务器吗?

我正在使用 Gradle,如果这很重要的话。

4

2 回答 2

2

如果您没有任何服务器端,那么您可以简单地将您的 HTML 主机页面放在您的公共路径中,而不是放在war 文件夹中,然后它将由 SuperDevMode CodeServer 提供服务,因为它现在是模块的一部分。不要忘记调整您的<script>:*.nocache.js将是页面的兄弟。

于 2012-11-19T23:05:19.330 回答
1

这是我想出的答案。在我的 HTML 文件中,我删除了加载 *.nocache.js 的脚本,而是动态生成它,如下所示:

<script type="text/javascript">
    function loadScript(scriptSrc)
    {
        var scriptTag = document.createElement('script');
        scriptTag.type = 'text/javascript';
        scriptTag.async = true;
        scriptTag.src = scriptSrc;
        var s = document.getElementsByTagName('script')[0];
        s.parentNode.insertBefore(scriptTag, s);
    }

    // Load the GWT script
    loadScript(('file:' == document.location.protocol ? "http://localhost:9876/" : "") + "admin/admin.nocache.js");
</script>

我运行代码服务器的 Gradle 任务如下所示:

task codeServer(dependsOn: "war") << {
    println("*----------------------------------------------------------------------------------------------*")
    println("   Ignore what this says below about going to http://localhost:9876/")
    println("   Instead, once the server below is up, in a separate command line, type:")
    println("       start $buildDir\\exploded\\Admin.html")
    println("*----------------------------------------------------------------------------------------------*")

    def gwtTempDir = "$buildDir/gwtTemp"
    (new File(gwtTempDir)).mkdirs()

    ant.java(classname: "com.google.gwt.dev.codeserver.CodeServer", failonerror: "true", fork: "true") {
        classpath {
            pathElement(location: "src/main/java")
            pathElement(location: "src/main/resources")
            pathElement(location: "$buildDir/classes/main")
            pathElement(path: configurations.compile.asPath)
        }
        jvmarg(value: "-Xmx512m")
        sysproperty(key: "java.util.logging.SimpleFormatter.format", value: System.getProperty("java.util.logging.SimpleFormatter.format"));
        arg(line: "-workDir " + gwtTempDir)
        arg(line: "-src " + "src/main/java")
        arg(value: "com.onlyinsight.oventio.Admin")
    }
}

所以现在,我可以将浏览器指向 file:///F:/projects/ConferenceModule/build/exploded/Admin.html 而不是第二个网络服务器,这一切都有效。

我希望这对其他人有所帮助。

于 2012-11-19T17:37:13.847 回答