java – GWT和Guava的问题

前端之家收集整理的这篇文章主要介绍了java – GWT和Guava的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我很难让GWT与番石榴一起工作.我在我的类路径中添加了guava-r09-gwt.jar,并且< inherits name =“com.google.common.collect.Collect”/> (从 this question复制到)我的* .gwt.xml文件.但是,我仍然收到以下错误

[ERROR] Line 99: No source code is
available for type
com.google.gwt.thirdparty.guava.common.collect.Lists;
did you forget to inherit a required
module?

引用的行是:

List<String> suggs = Lists.newArrayList();

如果我尝试以下继承标记

<inherits name="com.google.common.collect.Lists"/>

然后GWT完全失败 – 在浏览器中转到app会给出404,Eclipse的开发面板中没有URL.

我究竟做错了什么?

解决方法

您会注意到com.google.gwt.thirdparty.guava.common.collect.Lists实际上并不在Guava罐中.请尝试引用com.google.common.collect.Lists,您应该取得更多成功.
原文链接:https://www.f2er.com/java/239748.html

猜你在找的Java相关文章