GWT、Guice 和 GIN 编译
我正在尝试使用 Guice 和 Gin 构建 GWT MVP 应用程序。我将 Guice 和 GIN jar 添加到我的 Eclipse 项目中,但我遇到了这个错误:
java.lang.NoClassDefFoundError: com/google/inject/internal/util/$Preconditions
我已经完成了快速的 Google 搜索,并且 这里表示我们需要针对 GWT SDK 重新编译 GIN。此外,Gin 教程提到了有关编译步骤的内容。
将 GIN jar 添加到 GWT 项目还不够,还是必须从源生成 gin.jar?我如何使用 Eclipse(使用 Google 插件)完成此任务?
PS:我没有在我的项目中使用 Maven。仅 Eclipse 和 Google 工具 另外PS:目前使用Guice 3.0、Gin 1.5和GWT 2.3
I'm trying to build and GWT MVP application using Guice and Gin. I added Guice and GIN jars to my Eclipse project but i'm stuck with this error:
java.lang.NoClassDefFoundError: com/google/inject/internal/util/$Preconditions
I've done a quick Google search and here says the we need to recompile GIN against GWT SDK. Also, the Gin Tutorial mention something about a compilation step.
Isn't enough to add GIN jars to the GWT project, or is mandatory to generate gin.jar from sources? How do i accomplish this with Eclipse (with Google Plugin)?
PS: I'm not using Maven in my Project. Only Eclipse and Google Tools
Another PS: Currently using Guice 3.0, Gin 1.5 and GWT 2.3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是
GWT 2.2
或更高版本,请尝试使用gin 1.1
或更高版本的最新快照,并升级guice 3.0
。If you are using
GWT 2.2
or above try using a latest snapshot ofgin 1.1
or higher versions and also upgradeguice 3.0
.对于 Gin 1.5,有一个 pre-gwt-2.2 jar 和一个 post-gwt-2.2 jar。确保您拥有正确的产品。可能只有其中之一应该位于 WEB-INF/lib 中。确保 gin 和 guice 都在 lib 和 Java Build Path->Libraries 中。我还有 aopalliance.jar、guice-assistanceinject-3.0.jar 和 javax.inject.jar。 (还有 guice-servlet 但这不是这里问题的一部分)。确保 .gwt.xml 文件中有“”。
请记住,在开发模式下,gin 使用 guice 来完成大部分工作。
For Gin 1.5 there is a pre-gwt-2.2 jar and a post-gwt-2.2 jar. Make sure you have the right one. And probably only one of them should be in the WEB-INF/lib. Make sure both gin and guice are in the lib and in Java Build Path->Libraries. I also have aopalliance.jar, guice-assistedinject-3.0.jar and javax.inject.jar. (Also guice-servlet but that isn't part of the problem here). Make sure you have " " in your .gwt.xml file.
And remember in dev mode that gin uses guice to do most of the work.