将我现有的 GWT 项目导入 Eclipse 后,出现以下错误。
项目“TestUI”缺少所需的源文件夹:“TestMgr/nocache/js.gwt.xml”。
请帮忙。
请发布您的模块 gwt.xml。您应该确保入口点类路径是正确的
<!-- Specify the app entry point class. -->
<entry-point class="com.me.myproject.client.TestUI" />
并检查您是否将适当的包添加到您的模块中
<!-- Adding package to this gwt module -->
<source path="client" />
<source path="shared" />
如果模块一切正常,您能否更具体地说明错误发生的位置?启动项目时?在 Eclipse 警告中?