The guice AbstractModule install method
install allows for composition: Within its configure method, FooModule may install FooServiceModule (for instance). This would mean that an Injector created based only on FooModule will include bindings and providers in both FooModule and FooServiceModule. You may see install used to split a Module into logical sub-modules for ease of readability or testing, or for … Read more