[webbeans-issues] [JBoss JIRA] Commented: (WBRI-373) Introduce InjectionServices as alternative way for EE container to inject dependencies
Kabir Khan (JIRA)
jira-events at lists.jboss.org
Thu Aug 20 08:57:23 EDT 2009
[ https://jira.jboss.org/jira/browse/WBRI-373?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12481951#action_12481951 ]
Kabir Khan commented on WBRI-373:
---------------------------------
The InjectionServices interface only allows injection into existing instances
interface InjectionServices {
/**
* inject() will be called by Web Beans whenever it performs injection upon an
* InjectionTarget or Bean.
*
* In an EE environment, inject() must perform EE-style injection on the instance, as
* defined by annotations or deployment descriptors
*/
void inject(Object instance);
}
Pete's example when explaining this to me is to make WB understand "foreign" annotations for injection, e.g.
class MyBean
{
@org.jboss.mc.Inject TxManager tm;
}
I think it would make sense to expand this to support constructor injection (simliar to Producer.produce()), so we can do
class MyBean
{
MyBean(@org.jboss.mc.Inject TxManager tm)
{
}
}
> Introduce InjectionServices as alternative way for EE container to inject dependencies
> --------------------------------------------------------------------------------------
>
> Key: WBRI-373
> URL: https://jira.jboss.org/jira/browse/WBRI-373
> Project: Web Beans
> Issue Type: Feature Request
> Components: Resolution (Typesafe and by Name)
> Reporter: Pete Muir
> Fix For: 1.0.0.PREVIEW3
>
>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the weld-issues
mailing list