Lost Heaven 0809
Lost Heaven 0809

Reputation: 456

what scope of a bean before conversation.begin method is called

I have a CDI bean:

@Named
@ConversationScoped
public class MyBean implements Serializable{
      @Inject
      private Conversation converstion;

      private void conversationBegin() {
          converstion.begin();
      }
}

My question is: what scope of this bean before conversationBegin() is called?

Upvotes: 0

Views: 85

Answers (1)

covener
covener

Reputation: 17872

I think you're thinking about CDI wrong.

You hold a contextual reference to a bean with type MyBean. When you use it, a contextual instance is either created or obtained from the active conversation context and proxied by your contextual reference.

There is no change of scope. The only thing that changes over time is which context is active and whether there are instances already in the context or not.

Upvotes: 2

Related Questions