0 Replies Latest reply on Jul 19, 2011 7:10 AM by tung

    how to tell EL resolver directly where to get a STATELESS JavaBean component

    tung

      Hi,
      within an EL expression we have the implicit EL root-names such as requestScope, sessionScope, and applicationScope to tell EL-resolver directly where to lookup a component of the corresponding scope. And to lookup components of conversation scope directly we also have the 'conversationContext' El root-name.


      #{sessionScope.get('someComName')} or #{conversationContext.get('someConversationComName')}
      these EL lookup work fine.



      My question is, what is the EL root-name to lookup up STATELESS JavaBean components directly? I have tried the following:


      #{statelessContext.get('someComName')} and #{statelessScope.get('someComName')}, but they did't work for me.