...
Once the injector is created in your activator, it must be stored somewhere, so that it can be reused to provide models for you components. Thanks to this, there will be no need to recreate injector for every subsequent request. The place where created and configured injectors live is called Injectors Repository.
...
Every call of ModelProvider#get(class, resource)
within a single request causes that a resource (or path) passed as a parameter is pushed to the stack of current execution, then the guice injector is called, and after the object has been created the resource is popped from the stack. This resource is available for all other classes as a so called current resource and can also be injected to any object. In the below example the resource injected through constructor is just the current resource - the resource from the top of the execution stack. It should be noted that at the beginning of execution (most usually in <slice:lookup>
), the resource from sling request (request.getResource()
is passed to ModelProvider
(exactly as it is described in here).
Code Block | ||||
---|---|---|---|---|
| ||||
public class SimpleModel { private final String text; @Inject public SimpleModel(final Resource resource) { ValueMap valueMap = resource.adaptTo(ValueMap.class); text = valueMap.get("text"); } ... } |
...
Info |
---|
In above examples we injected resource and then adapted it to |