我正在尝试运行Playn示例项目。我按照this guide中的每个步骤设置新的Playn开发环境,然后this guide运行示例项目。
它看起来工作得很好,但是当我试图通过右键单击运行HTML5版本,然后转到Google->GWT compile时,什么都没有发生。我没有看到弹出的开发模式视图来复制地址并将其粘贴到web浏览器,如指南所述。我只是在控制台窗口中得到以下信息:

   Compiling module playn.showcase.Showcase
   Compiling 1 permutation
      Compiling permutation 0...
   Compile of permutations succeeded
   Linking into L:\playn-samples\showcase\html\war\showcase
   Link succeeded

   Compilation succeeded -- 35.187s

除此之外什么也没有发生。如果我右键单击并选择run as->web application,就会弹出一个对话框
在项目playn showcase html中找不到任何宿主页
有人知道我做错了什么吗?

最佳答案

你从汇编中得到的都很好。
“除此之外什么也没发生。”没关系。
当您右键单击“playn showcase html”项目,选择“Run As-(g)Web应用程序”时,您应该将“开发模式”选项卡的输出设置为“http://127.0.0.1:8888/showcase.html?gwt.codesvr=127.0.0.1:9997英寸。
如果没有,请检查“playn showcase html”项目下是否有以下文件夹结构:

playn-showcase-html
|...
|--war
   |--Showcase.html
   |--WEB-INF
      |--web.xml

关于html5 - 无法从Eclipse运行Playn HTML5,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8275867/

10-11 08:44