-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Guice41
Googler edited this page Jan 15, 2020
·
8 revisions
Released June 17, 2016
Guice:
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>4.1.0</version>
</dependency>
Guice (No AOP):
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>4.1.0</version>
<classifier>no_aop</classifier>
</dependency>
Extensions:
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-${extension}</artifactId>
<version>4.1.0</version>
</dependency>
- Guice: guice-4.1.0.jar
- Guice (No AOP): guice-4.1.0-no_aop.jar
- Guice extensions are all directly downloadable from this search page. Just click on the "jar" link for the appropriate extension.
-
@ProvidedBy
supports javax.inject.Provider (issue #808) - Reduced the number of lines in error messages.
- Fix potential rare deadlock when there are multi-threaded cycles in singletons.
- Allow members injection to happen in parallel if it was requested from different threads.
- Make disableCircularProxies more strict.
- Updated the internal cglib to 3.2.0 to allow Guice to be used with signed jars.
- Various performance optimizations.
- TypeListeners no longer get invoked for
Provider
instances that Guice generates for@Provides
methods.
- Skip static methods in interfaces (for Java8 compatibility) (issue #937)
- Add Iterable overloads for the varargs methods in ServletModule.
- Add an AutoCloseable-style API for transferring the request scope.
- Normalize the path before applying filters.
- Add more bound types when using MapBinder. By default,
Set<Map.Entry<K, javax.inject.Provider<V>>
will be bound. And additionally ifpermitDuplicates()
is called, the following are also bound:Map<K, Set<javax.inject.Provider<V>>>
,Map<K, Collection<Provider<V>>>
, andMap<K, Collection<javax.inject.Provider<V>>>
.
- Fix
@Bind
to support javax.inject.Provider. - Allow
@Bind
to bind to null if annotated with@Nullable
. - Allow
@Bind(lazy=true)
with Providers.
- Support the new multibinding declaration style (
@IntoSet
, etc..)
See the JDiff change report for complete details.
-
User's Guide
-
Integration
-
Extensions
-
Internals
-
Releases
-
Community