将 jar 添加到 GWT 项目

发布于 2024-11-03 00:03:57 字数 377 浏览 0 评论 0原文

这可能是一个愚蠢的问题,但经过 30 分钟的 Google 搜索,我仍然没有找到答案。

我想构建示例程序“gwt-beans-binding”( http://code.google.com/p/gwt-beans-binding/

我下载了 *jar 文件并将其复制到lib 文件夹并将其添加到属性-->Java 构建路径-->库-->添加 JAR。

当我构建项目时,我收到“java.lang.ClassNotFoundException”...

我缺少什么?必须在 *.gwt.xml 中写一些东西吗?

this may be a stupid question but after 30minutes of Googleing, I still havent found an answer..

I want to build the example program "gwt-beans-binding" ( http://code.google.com/p/gwt-beans-binding/.

I download the *jar file and copied it into the the lib folder and added it to Properties-->Java Build Path -- >Libaries --> Add JARs.

When I'm build the project, I'm geting "java.lang.ClassNotFoundException"s...

What am I missing (do I have to write something in the *.gwt.xml?

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

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

发布评论

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

评论(2

夏尔 2024-11-10 00:03:57

要在 Eclipse 内构建,只需将库 jar 添加到库中就足够了。但是对于 GWT 编译(或在开发人员模式中执行),您的模块文件 (*.gwt.xml) 必须指向库模块文件。库模块文件将说明 GWT 源代码所在的位置。

<!-- this will declare where the source code is for the library GWT classes -->
<inherits name='org.gwt.beansbinding.Main' />
<!-- OR THIS... I don't really know -->
<inherits name='org.gwt.beansbinding.BeansBinding' />

For building inside Eclipse it should be enough with adding the library jar to the Libraries. But for GWT compiling (or executing inside Developer Mode) your module file (*.gwt.xml) has to point to the library module file. The library module file will say where the GWT source code is located.

<!-- this will declare where the source code is for the library GWT classes -->
<inherits name='org.gwt.beansbinding.Main' />
<!-- OR THIS... I don't really know -->
<inherits name='org.gwt.beansbinding.BeansBinding' />
驱逐舰岛风号 2024-11-10 00:03:57

GWT 编译器需要源代码才能将 Java 代码编译为 JavaScript。所以你也必须将源文件夹添加到类路径中。

您能给我们完整的堆栈跟踪吗?缺少什么类?

The GWT compiler needs the sources to comile Java code to JavaScript. So you have to add the source folder to the class path too.

Can you give us the full stacktrace, what class is missing?

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