|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.elasticsearch.common.inject.Guice
public final class Guice
The entry point to the Guice framework. Creates Injector
s from
Module
s.
Guice supports a model of development that draws clear boundaries between
APIs, Implementations of these APIs, Modules which configure these
implementations, and finally Applications which consist of a collection of
Modules. It is the Application, which typically defines your main()
method, that bootstraps the Guice Injector using the Guice
class, as
in this example:
public class FooApplication { public static void main(String[] args) { Injector injector = Guice.createInjector( new ModuleA(), new ModuleB(), . . . new FooApplicationFlagsModule(args) ); // Now just bootstrap the application and you're done FooStarter starter = injector.getInstance(FooStarter.class); starter.runApplication(); } }
Method Summary | |
---|---|
static Injector |
createInjector(java.lang.Iterable<? extends Module> modules)
Creates an injector for the given set of modules. |
static Injector |
createInjector(Module... modules)
Creates an injector for the given set of modules. |
static Injector |
createInjector(Stage stage,
java.lang.Iterable<? extends Module> modules)
Creates an injector for the given set of modules, in a given development stage. |
static Injector |
createInjector(Stage stage,
Module... modules)
Creates an injector for the given set of modules, in a given development stage. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static Injector createInjector(Module... modules)
CreationException
- if one or more errors occur during Injector
constructionpublic static Injector createInjector(java.lang.Iterable<? extends Module> modules)
CreationException
- if one or more errors occur during Injector
creationpublic static Injector createInjector(Stage stage, Module... modules)
CreationException
- if one or more errors occur during Injector
creationpublic static Injector createInjector(Stage stage, java.lang.Iterable<? extends Module> modules)
CreationException
- if one or more errors occur during Injector
construction
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |