Just discovered the Guava libraries project.

Do these work with GWT?

link|improve this question

feedback

3 Answers

up vote 11 down vote accepted

From the introductory PDF on that page,

You can use these libraries on...

  • On JDK 6
  • On Android
    We think. Need volunteers to help us test it out.
  • On Google App Engine
    We think. Need volunteers to help us test it out.
  • On GWT -- spotty!
    Because GWT's JDK library support is spotty
    Maybe 2/3 the stuff in these libraries is GWT-safe so far
    Just look for @GwtCompatible!
    Performance? Not necessarily good.
link|improve this answer
...posted my question before RTFM... thanks! – jldupont Jan 5 '10 at 11:35
3  
This answer is out of date - guava in r09 now has GWT support. – James Moore Apr 25 '11 at 18:01
feedback

Here are some more details on how to accomplish this with the (currently latest) 10.0.1 release of Guava.

  1. The Guava release consists of two JARs, guava-10.0.1.jar and guava-gwt-10.0.1.jar. You will need both for getting Guava to work within your GWT project. (In a non-GWT project you will only need the former.) Download them and add them to your project; if you use Maven, use these dependencies:

    <dependency>
        <groupId>com.google.guava</groupId>
        <artifactId>guava</artifactId>
        <version>10.0.1</version>
    </dependency>
    <dependency>
        <groupId>com.google.guava</groupId>
        <artifactId>guava-gwt</artifactId>
        <version>10.0.1</version>
    </dependency>
    

    Maven will then automatically download the two Jars from the Central Maven Repository.

  2. Add

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

    to your GWT module file to enable Guava.

link|improve this answer
oh cool! thanks! – jldupont Jun 1 '11 at 14:24
I'm having difficulty making this work in Eclipse (not using Maven). Any instructions for that? – Rosarch Aug 10 '11 at 6:13
Meanwhile, 10.0.1 is in Central: repo1.maven.org/maven2/com/google/guava/guava/10.0.1 – xamde Oct 30 '11 at 10:06
Thanks, xamde. I have just updated the dependencies to use version 10.0.1. – Hbf Dec 19 '11 at 17:28
feedback

In the future, we'll release a working GWT module covering the @GwtCompatible subset of the library. Stay tuned.

link|improve this answer
Thanks for the update! – jldupont Jan 5 '10 at 18:38
Any idea when this might come out? – Sudhir Jonathan Mar 25 '10 at 9:03
Echoing Sudhir's question... – Ibrahim Aug 19 '10 at 18:48
1  
I believe we'll have it by end of September. – Kevin Bourrillion Aug 27 '10 at 21:20
1  
In maven please? I've been using guava-r06 built from the ant script. guava-r08 is in maven, but no guava-gwt. – Mark Renouf Oct 11 '10 at 3:18
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.