2

在 Eclipse Run Configurations for Google Web Applications 中,我看到了一个程序参数列表,如下所示:

-remoteUI "${gwt_remote_ui_server_port}:${unique_id}" -startupUrl Test_AppEngine.html -logLevel INFO -codeServerPort 9997 -port 8888 ...

两个问题:1)“gwt_remote_ui_server_port”和“unique_id”在哪里定义,更一般地说,2)我在哪里可以找到所有可能参数的描述?

谢谢。

4

1 回答 1

1

要在 GWT 编译器的托管模式和编译模式下传递的参数列表 - https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging

这些参数-remoteUI "${gwt_remote_ui_server_port}:${unique_id}"与 GAE 无关,而是与在Eclipse 的开发模式视图中启动的 GWT 托管模式有关,而不是与 Eclipse之外的独立应用程序有关。

在此处输入图像描述

如果您删除 arguments -remoteUI "${gwt_remote_ui_server_port}:${unique_id}",GPE 仍将启动。这次作为独立应用程序。

在此处输入图像描述

于 2012-12-31T15:09:23.677 回答