0 Replies Latest reply on May 20, 2010 5:52 PM by lee3star.lee3star.gmail.com

    2.2.1.CR1 EntityQuery bug?

    lee3star.lee3star.gmail.com

      I generated UserList.java(EntityQuery class) and UserList.xthml using seam generate-ui command, based on entity class: User.java.


      The problem is: when testing the search function in UserList.xhtml, I got the following error:


      WARN  [org.jboss.seam.Component] Cannot create Seam component, scope is not active: entityManager(CONVERSATION)



      I searched deeper into code and found this seems something inevitable.


      After 'Search's clicked, UserList.xhtml will go into JSF restore view phase. Since the page uses 'userList' component, the component needs to be created.


      When creating 'userList' component, it needs to call component's @Create method, which is validate(). In EntityQuery's validate method, it checks for entity manager, which is in conversation scope.


      The problem is, at that time, conversation context has not been created for the thread. Thus entity manager cannot be created. Exception throws.


      An interesting thing is, the conversation context is created just after that, in handleAfterPhase of restore view phase:


      SeamPhaseListener.java:




         protected void afterRestoreView(FacesContext facesContext)
         {
            FacesLifecycle.resumePage();
            Map parameters = facesContext.getExternalContext().getRequestParameterMap();
            ConversationPropagation.instance().restoreConversationId(parameters);
            boolean conversationFound = Manager.instance().restoreConversation();
            FacesLifecycle.resumeConversation( facesContext.getExternalContext() );
            postRestorePage(facesContext, parameters, conversationFound);
         }





      FacesLifecycle.java:




         public static void resumeConversation(ExternalContext externalContext)
         {
            ServerConversationContext conversationContext = new ServerConversationContext( externalContext.getSessionMap() );
            /*Context conversationContext = Init.instance().isClientSideConversations() ?
                  (Context) new ClientConversationContext() :
                  (Context) new ServerConversationContext( externalContext.getSessionMap() );*/
            Contexts.conversationContext.set(conversationContext);
            Contexts.businessProcessContext.set( new BusinessProcessContext() );
            conversationContext.unflush();
         }





      Have I missed anything? Or it's a bug?