com.google.inject.Injector |
Builds the graphs of objects that make up your application. The injector tracks the dependencies for each type and uses bindings to inject them. This is the core of Guice, although you rarely interact with it directly. This "behind-the-scenes" operation is what distinguishes dependency injection from its cousin, the service locator pattern.
Contains several default bindings:
Injector
instance itself
Provider<T>
for each binding of type T
Stage
in which the Injector was created
Guice
.
An injector can also inject the dependencies
of
already-constructed instances. This can be used to interoperate with objects created by other
frameworks or services.
Injectors can be hierarchical
. Child injectors inherit
the configuration of their parent injectors, but the converse does not hold.
The injector's internal bindings
are available for introspection. This
enables tools and extensions to operate on an injector reflectively.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Returns a new injector that inherits all state from this injector.
| |||||||||||
Returns a new injector that inherits all state from this injector.
| |||||||||||
Returns all explicit bindings for
type . | |||||||||||
Returns a snapshot of this injector's bindings, both explicit and
just-in-time.
| |||||||||||
Returns the binding for the given injection key.
| |||||||||||
Returns the binding for the given type.
| |||||||||||
Returns this injector's explicit bindings.
| |||||||||||
Returns the binding if it already exists, or null if does not exist.
| |||||||||||
Returns the appropriate instance for the given injection key; equivalent to
getProvider(key).get() . | |||||||||||
Returns the appropriate instance for the given injection type; equivalent to
getProvider(type).get() . | |||||||||||
Returns the members injector used to inject dependencies into methods and fields on instances
of the given type
T . | |||||||||||
Returns the members injector used to inject dependencies into methods and fields on instances
of the given type
T . | |||||||||||
Returns this injector's parent, or
null if this is a top-level injector. | |||||||||||
Returns the provider used to obtain instances for the given injection key.
| |||||||||||
Returns the provider used to obtain instances for the given type.
| |||||||||||
Returns a map containing all scopes in the injector.
| |||||||||||
Returns a set containing all type converter bindings in the injector.
| |||||||||||
Injects dependencies into the fields and methods of
instance . |
Returns a new injector that inherits all state from this injector. All bindings, scopes, interceptors and type converters are inherited -- they are visible to the child injector. Elements of the child injector are not visible to its parent.
Just-in-time bindings created for child injectors will be created in an ancestor injector whenever possible. This allows for scoped instances to be shared between injectors. Use explicit bindings to prevent bindings from being shared with the parent injector.
No key may be bound by both an injector and one of its ancestors. This includes just-in-time
bindings. The lone exception is the key for Injector.class
, which is bound by each
injector to itself.
Returns a new injector that inherits all state from this injector. All bindings, scopes, interceptors and type converters are inherited -- they are visible to the child injector. Elements of the child injector are not visible to its parent.
Just-in-time bindings created for child injectors will be created in an ancestor injector whenever possible. This allows for scoped instances to be shared between injectors. Use explicit bindings to prevent bindings from being shared with the parent injector. Optional injections in just-in-time bindings (created in the parent injector) may be silently ignored if the optional dependencies are from the child injector.
No key may be bound by both an injector and one of its ancestors. This includes just-in-time
bindings. The lone exception is the key for Injector.class
, which is bound by each
injector to itself.
Returns all explicit bindings for type
.
This method is part of the Guice SPI and is intended for use by tools and extensions.
Returns a snapshot of this injector's bindings, both explicit and
just-in-time. The returned map is immutable; it contains only the bindings that were
present when getAllBindings()
was invoked. Subsequent calls may return a map with
additional just-in-time bindings.
The returned map does not include bindings inherited from a parent
injector
, should one exist.
This method is part of the Guice SPI and is intended for use by tools and extensions.
Returns the binding for the given injection key. This will be an explicit bindings if the key was bound explicitly by a module, or an implicit binding otherwise. The implicit binding will be created if necessary.
This method is part of the Guice SPI and is intended for use by tools and extensions.
ConfigurationException | if this injector cannot find or create the binding. |
---|
Returns the binding for the given type. This will be an explicit bindings if the injection key was bound explicitly by a module, or an implicit binding otherwise. The implicit binding will be created if necessary.
This method is part of the Guice SPI and is intended for use by tools and extensions.
ConfigurationException | if this injector cannot find or create the binding. |
---|
Returns this injector's explicit bindings.
The returned map does not include bindings inherited from a parent
injector
, should one exist. The returned map is guaranteed to iterate (for example, with
its entrySet()
iterator) in the order of insertion. In other words, the order in
which bindings appear in user Modules.
This method is part of the Guice SPI and is intended for use by tools and extensions.
Returns the binding if it already exists, or null if does not exist. Unlike
getBinding(Key)
, this does not attempt to create just-in-time bindings
for keys that aren't bound.
This method is part of the Guice SPI and is intended for use by tools and extensions.
Returns the appropriate instance for the given injection key; equivalent to getProvider(key).get()
. When feasible, avoid using this method, in favor of having Guice
inject your dependencies ahead of time.
ConfigurationException | if this injector cannot find or create the provider. |
---|---|
ProvisionException | if there was a runtime failure while providing an instance. |
Returns the appropriate instance for the given injection type; equivalent to getProvider(type).get()
. When feasible, avoid using this method, in favor of having Guice
inject your dependencies ahead of time.
ConfigurationException | if this injector cannot find or create the provider. |
---|---|
ProvisionException | if there was a runtime failure while providing an instance. |
Returns the members injector used to inject dependencies into methods and fields on instances
of the given type T
.
typeLiteral | type to get members injector for |
---|
Returns the members injector used to inject dependencies into methods and fields on instances
of the given type T
. When feasible, use getMembersInjector(TypeLiteral)
instead to get increased up front error detection.
type | type to get members injector for |
---|
Returns this injector's parent, or null
if this is a top-level injector.
Returns the provider used to obtain instances for the given injection key. When feasible, avoid using this method, in favor of having Guice inject your dependencies ahead of time.
ConfigurationException | if this injector cannot find or create the provider. |
---|
Returns the provider used to obtain instances for the given type. When feasible, avoid using this method, in favor of having Guice inject your dependencies ahead of time.
ConfigurationException | if this injector cannot find or create the provider. |
---|
Returns a map containing all scopes in the injector. The maps keys are scoping annotations
like Singleton.class
, and the values are scope instances, such as Scopes.SINGLETON
. The returned map is immutable.
This method is part of the Guice SPI and is intended for use by tools and extensions.
Returns a set containing all type converter bindings in the injector. The returned set is immutable.
This method is part of the Guice SPI and is intended for use by tools and extensions.
Injects dependencies into the fields and methods of instance
. Ignores the presence or
absence of an injectable constructor.
Whenever Guice creates an instance, it performs this injection automatically (after first performing constructor injection), so if you're able to let Guice create all your objects for you, you'll never need to use this method.
instance | to inject members on |
---|