Interface | Description |
---|---|
Context |
Scoped component store.
|
WebContext<C> |
Web context (e.g.
|
Class | Description |
---|---|
ApplicationContext |
Built-in
Context implementation corresponding to the
Application scope. |
PrototypeContext | |
RequestContext | |
SessionContext | |
SingletonContext | |
ThreadContext |
Annotation Type | Description |
---|---|
Application |
@Application -annotated component is sustained in servlet context. |
Prototype |
@Prototype -annotated component is constructed newly each time
component dependency graph is built and sustained in the same scope as the
owner component. |
Request |
@Request -annotated component is sustained in HTTP request. |
Scope |
@Scope is a meta annotation to represent component scope qualifier. |
Session |
@Session -annotated component is sustained in HTTP session. |
Singleton |
@Singleton -annotated component is sustained in singleton
(per-ClassLoader ) scope. |
Thread |
@Thread -annotated component is sustained in thread. |
Copyright © 2011-2014 Eiichiro Uchiumi. All Rights Reserved.