将 jar 添加到 GWT 项目
这可能是一个愚蠢的问题,但经过 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在 Eclipse 内构建,只需将库 jar 添加到库中就足够了。但是对于 GWT 编译(或在开发人员模式中执行),您的模块文件 (*.gwt.xml) 必须指向库模块文件。库模块文件将说明 GWT 源代码所在的位置。
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.
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?