我很难让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,您应该取得更多成功.