[webbeans-issues] [JBoss JIRA] Updated: (WBRI-380) Add prduction to InjectionServices to allow container to inject constructor dependencies
Pete Muir (JIRA)
jira-events at lists.jboss.org
Thu Aug 27 08:26:23 EDT 2009
[ https://jira.jboss.org/jira/browse/WBRI-380?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Pete Muir updated WBRI-380:
---------------------------
Description:
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)
{
}
}
> Add prduction to InjectionServices to allow container to inject constructor dependencies
> ----------------------------------------------------------------------------------------
>
> Key: WBRI-380
> URL: https://jira.jboss.org/jira/browse/WBRI-380
> Project: Web Beans
> Issue Type: Feature Request
> Components: Resolution (Typesafe and by Name)
> Reporter: Pete Muir
> Fix For: 1.0.0.CR1
>
>
> 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)
> {
> }
> }
--
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