πBefore you start
Before you start, you need to learn the basic things about this project.
Annotations
Incomplete documentation
API Usage
Mineject mineject = MinejectFactory.create()
.dependencySettings((settings, context) -> settings.packageName("your.package"))
.withBean(TestManager.class, new TestManagerImpl())
.build(false); // Set to false if you prefer to manually initialize the dependency injector (optional)
/*
* Must be called if 'false' was passed to the #build method
* to manually start the dependency injector
*/
mineject.runDependencyInjector();Last updated