[
https://issues.jboss.org/browse/WELD-912?page=com.atlassian.jira.plugin.s...
]
Stuart Douglas commented on WELD-912:
-------------------------------------
In ManagedBean.specialize there is the following bit of code:
if (environment.getClassBean(getWeldAnnotated().getWeldSuperclass()) == null)
{
throw new DefinitionException(SPECIALIZING_BEAN_MUST_EXTEND_A_BEAN, this);
}
AbstractClassBean<?> specializedBean =
environment.getClassBean(getWeldAnnotated().getWeldSuperclass());
The problem is that environment will never contain beans from a different bean archive,
furthermore at this point in the deployment process not all beans are deployed yet.
Specializing bean in bundled archive doesn't work
-------------------------------------------------
Key: WELD-912
URL:
https://issues.jboss.org/browse/WELD-912
Project: Weld
Issue Type: Bug
Components: Bootstrap and Metamodel API
Affects Versions: 1.1.1.Final
Reporter: Nicklas Karlsson
Assignee: Stuart Douglas
Attachments: test.zip
@Specializing a bean by extending it directly from a bundled CDI-archive gives a
Caused by: org.jboss.weld.exceptions.DefinitionException: WELD-000047 Specializing bean
must extend another bean: Managed Bean [class fi.affecto.test.MyApplicationBundles] with
qualifiers [@Any @Default]
at org.jboss.weld.bean.ManagedBean.specialize(ManagedBean.java:545)
at org.jboss.weld.bean.AbstractBean.initialize(AbstractBean.java:124)
at org.jboss.weld.bean.AbstractClassBean.initialize(AbstractClassBean.java:202)
at org.jboss.weld.bean.ManagedBean.initialize(ManagedBean.java:372)
at org.jboss.weld.bootstrap.AbstractBeanDeployer.deploy(AbstractBeanDeployer.java:113)
at org.jboss.weld.bootstrap.BeanDeployment.deployBeans(BeanDeployment.java:216)
at org.jboss.weld.bootstrap.WeldBootstrap.deployBeans(WeldBootstrap.java:370)
at org.jboss.as.weld.WeldContainer.start(WeldContainer.java:82)
at org.jboss.as.weld.services.WeldService.start(WeldService.java:89)
... 4 more
--
This message is automatically generated by JIRA.
For more information on JIRA, see:
http://www.atlassian.com/software/jira