经过很多的痛苦,最后安装了GWT 2.5与我的Eclipse开普勒
现在我可以使用开发模式启动,即经典开发模式.
通过Eclipse aruguments选项卡中的调试配置.
-remoteUI “${gwt_remote_ui_server_port}:${unique_id}” -startupUrl index.html -logLevel INFO -codeServerPort 9997 -port 8888 -war E:\GWT2.5_Test\V4Workflow_V17\war com.suresh.V4Workflow
当我调试Eclipse生成的URL
http://127.0.0.1:8888/index.html?gwt.codesvr=127.0.0.1:9997
哪个是好的,可以调试我的代码.
实际问题从这里开始:
我急切地等待启动我的应用程序与Super Dev Mode.
Super Dev Mode runs the GWT compiler in a web server,which is an ordinary Java application that developers can run from the command line. After the server starts up,it prints its URL:
The code server is ready.
Next,visit:http://localhost:9876/
<add-linker name="xsiframe"/> <set-configuration-property name="devModeRedirectEnabled" value="true"/>
我编译了这个项目,然后我发布了http:// localhost:9876 / nothing.
奇怪的是没有在文档中建立配置指南.
我在这里缺少什么
感谢任何线索.
解决方法
如果不 :
>打开窗口“运行配置”
>在“Java应用程序”中创建一个新的启动器
>在“主”选项卡中:
>添加你的项目(“浏览”)
>添加主类:“com.google.gwt.dev.codeserver.CodeServer”
>在“参数”选项卡中:
>添加“-src src / PACKAGE_NAME.PROJECTNAME”(虚构示例“-src src / com.google.My_project”)
>在“classpath”选项卡中:
>选择“用户条目”,并添加jar“gwt-codeserver.jar”
>保存此配置
之后,您可以启动服务器,然后启动第二个启动器并访问该页面:http:// localhost:9876 /.
来源:http://www.badlogicgames.com/wordpress/?p=3073
希望这将有助于您.