Google App Engine - 重新编译 GWT 模块

发布于 2024-12-22 20:38:58 字数 596 浏览 3 评论 0原文

我已按照《Beginning Java Google App Engine》一书使用 Eclipse 在 Java 中创建了 Google App Engine 项目,

在购买这本书之前,我已使用未选中的选项“”创建了项目使用 Google Web Toolkit',但对于这个项目,我检查了它(按照本书)

Eclipse 为我生成了几个文件,我运行我的应用程序,将链接复制到 Web 浏览器(http://localhost:8888< /code>)它给了我一个 错误:

可能需要(重新)编译 GWT 模块 name_of_my_project

我在 Ubuntu 10.04 上工作(我使用 Firefox 和 Chromium 测试我的应用程序),并且我尝试在 Windows XP 上运行我的应用程序(使用相同的 Web 浏览器) )具有相同的效果(只有一个区别 - Google Chrome 让我安装 Web Toolkit...所以我这样做了,但它仍然给出相同的错误)

提前致谢:)

I've created Google App Engine project in Java using Eclipse following the book Beginning Java Google App Engine

Before I bought this book I had created projects with unchecked option 'Use Google Web Toolkit' but for this project I checked it (following the book)

Eclipse generated several files for me and I run my applications, copy link to Web Browser (http://localhost:8888) and it gives me an error:

GWT module name_of_my_project may need to be (re)complied

I work on Ubuntu 10.04 (I was testing my application using Firefox and Chromium) and I was trying run my application on Windows XP (using the same Web Browsers) with the same effect (just one difference - Google Chrome made me install Web Toolkit...so I did it but it still gives the same error)

Thanks in advance :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

薄荷→糖丶微凉 2024-12-29 20:38:59

感谢您的意见和建议。我在 Ubuntu 上重新安装了 Eclipse,并再次安装了插件,它可以工作了:)

因此,请小心您使用的 Eclipse 版本 - Eclipse 3.4 对 GWT 有问题。

Thanks for your comments and suggestions. I re-installed Eclipse on Ubuntu and I installed plugin one more time and it works :)

So, be careful which version of Eclipse you use - Eclipse 3.4 has problem with GWT.

百思不得你姐 2024-12-29 20:38:58

在使用 IntelliJ 和 Chrome 进行开发时,我在意外的时候收到相同的错误消息。当我停止并启动开发模式时,该消息仍然出现。我删除out文件夹中的编译文件(class文件、js文件)后问题就解决了。在eclipse上,您可以尝试删除war文件夹中生成的文件和文件夹(删除具有项目名称的文件夹(如果存在),以及/war/WEB-INF/classes下的classes文件夹)。希望这有帮助。

I get the same error message at unexpected times using development on IntelliJ with Chrome. The message still appears when I stop and start development mode. The problem is fixed after I delete the compiled files (class files, js files) in the out folder. On eclipse, you can try deleting files and folders generated in the war folder (delete the folder that has the project name, if it exists, and the classes folder under /war/WEB-INF/classes). Hope this helps.

长途伴 2024-12-29 20:38:58

检查“Java 构建路径”是否有正确的默认输出文件夹(例如 /target/project-name/WEB-INF/classes)。

在 Eclipse 中,执行“Clean Build”。

单击 Eclipse 菜单中的 google 蓝色按钮并选择“GWT Compile Project...”

通过检查编译器输出来确保 GWT 插件正在编译您的项目。 GWT 编译器会输出很多内容,例如,您总是会看到类似“正在编译 6 个排列...正在编译排列 0...”的内容。

如果您仍然遇到问题,请尝试使用 GWT 设置 Eclipse 的此页面:http://code.google.com/webtoolkit/usingeclipse.html

Check in your "Java Build Path" if you have the correct Default output folder (something like /target/project-name/WEB-INF/classes).

In Eclipse, do a "Clean Build".

Click on the google blue button in the Eclipse menu and select "GWT Compile Project..."

Make sure the GWT plugin is compiling your project by checking the compiler output. The GWT compiler outputs lots of things, for example you will always see something like "Compiling 6 permutations.... Compiling permutation 0..."

If you still have problems, try this page on setting up Eclipse with GWT: http://code.google.com/webtoolkit/usingeclipse.html

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文