= Google Guice
{wiki=Google_Guice}
Google Guice is an open-source dependency injection framework for Java. It was developed by Google to facilitate the development of scalable and maintainable applications by managing the dependencies of various components at runtime. Dependency injection (DI) is a design pattern that allows an object to receive its dependencies from an external source rather than creating them internally, which promotes loose coupling and increases testability.
Back to article page