이 콘텐츠는 선택한 언어로 제공되지 않습니다.
10.2.5. Contexts, Scopes, and Dependencies
10.2.5.1. Contexts and Scopes 링크 복사링크가 클립보드에 복사되었습니다!
링크 복사링크가 클립보드에 복사되었습니다!
A context, in terms of CDI, is a storage area which holds instances of beans associated with a specific scope.
A scope is the link between a bean and a context. A scope/context combination may have a specific lifecycle. Several pre-defined scopes exist, and you can create your own scopes. Examples of pre-defined scopes are
@RequestScoped
, @SessionScoped
, and @ConversationScope
.