You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@myfaces.apache.org by "Eduardo Breijo (JIRA)" <de...@myfaces.apache.org> on 2017/07/20 14:32:00 UTC

[jira] [Created] (MYFACES-4126) Implicit objects flowScope and view cannot be injected using CDI

Eduardo Breijo created MYFACES-4126:
---------------------------------------

             Summary: Implicit objects flowScope and view cannot be injected using CDI
                 Key: MYFACES-4126
                 URL: https://issues.apache.org/jira/browse/MYFACES-4126
             Project: MyFaces Core
          Issue Type: Bug
    Affects Versions: 2.3.0-beta
            Reporter: Eduardo Breijo


The implicit objects #{flowScope} annotated @FlowMap and #{view} which results in UIViewRoot cannot be injected using CDI.

For example:

@Inject
private UIViewRoot viewRoot;

@Inject
@FlowMap
private Map<Object, Object> flowMap;

The above results in the following errors respectively:

An exception occurred while starting the application ELImplicitObjectsViaCDI. The exception message was: com.ibm.ws.container.service.state.StateChangeException: org.jboss.weld.exceptions.DeploymentException: WELD-001408: Unsatisfied dependencies for type UIViewRoot with qualifiers @Default
  at injection point [BackedAnnotatedField] @Inject private com.ibm.ws.jsf23.fat.beans.ELImplicitObjectBean.viewRoot


An exception occurred while starting the application ELImplicitObjectsViaCDI. The exception message was: com.ibm.ws.container.service.state.StateChangeException: org.jboss.weld.exceptions.DeploymentException: WELD-001408: Unsatisfied dependencies for type Map<Object, Object> with qualifiers @FlowMap
  at injection point [BackedAnnotatedField] @Inject @FlowMap private com.ibm.ws.jsf23.fat.beans.ELImplicitObjectBean.flowMap

A patch is provided.






--
This message was sent by Atlassian JIRA
(v6.4.14#64029)