문제

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?

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top