Hello,
I am using ADF 11.1.1.5.
I would like to know what is the Best Practice to use Dependency Injection in an ADF Application. For instance, after having registered an application-scoped Bean "AppBean" in a task-flowing (using the <managed-bean> tag), how can I inject its instance in another bean (lets say session-scoped) "MyBean"?
In "myBean", I am wondering if it is possible to inject "appBean" programmatically (using JSR 330 for instance) like:
@Inject
private AppBean bean;
Many thanks in advance for your time and help,
Jérémie