[
https://issues.jboss.org/browse/JBWEB-224?page=com.atlassian.jira.plugin....
]
Remy Maucherat resolved JBWEB-224.
----------------------------------
Resolution: Done
Ok, dynamic beans like this one needed to be added to the component class list.
No injection in AsyncListener in AS 7.1
---------------------------------------
Key: JBWEB-224
URL:
https://issues.jboss.org/browse/JBWEB-224
Project: JBoss Web
Issue Type: Bug
Security Level: Public(Everyone can see)
Reporter: arjan tijms
Assignee: Remy Maucherat
Labels: asynchronous, cdi, injection, servlet
Using JBoss AS 7.1CRb I have defined the following Servlet AsyncListener:
{code}
@ManagedBean
public class AsyncServletListener implements AsyncListener {
@Inject
private AsyncBean asyncBean;
@Override
public void onStartAsync(AsyncEvent event) throws IOException {
System.out.println("onStartAsync");
}
@Override
public void onComplete(AsyncEvent event) throws IOException {
System.out.println("onComplete");
}
@Override
public void onError(AsyncEvent event) throws IOException {
System.out.println("onError");
}
@Override
public void onTimeout(AsyncEvent event) throws IOException {
System.out.println("onTimeout");
}
}
{code}
I registered this listener on an AsyncContext as follows:
{code}
AsyncContext asyncContext = request.startAsync();
asyncContext.addListener(asyncContext.createListener(AsyncServletListener.class));
{code}
The listener is called correctly, but there's no injection happening. Everything is
inside a single war and the mandatory empty beans.xml has been created. JBoss AS is indeed
starting up CDI ("Starting weld service" appears in the logs).
If I run the same code in GlassFish, injection does happen.
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.jboss.org/secure/ContactAdministrators!default.jspa
For more information on JIRA, see:
http://www.atlassian.com/software/jira